Operadores Lógicos e Atribuições
if (nonempty (list)
&& (temp1 = list_next (list))
&& nonempty (temp1)
&& (temp2 = list_next (temp1)))
… /* usa temp1 e temp2 */if ((temp1 = list_next (list))
&& (temp2 = list_next (temp1)))
…Atualizado
Isto foi útil?