In a part of a code that I need to understand, a new syntax appeared for me in if :
if (!(errS&errE)) {
fprintf(stderr, "\nFALTA ARGUMENTOS\n");
if(!errS)
fprintf(stderr, "-s NOME ARQUIVO SAIDA \n");
if(!errE)...
The code below when executed returns the result for m = 0 , but doing the table test the result should be -2 .
I can not prove 0 as a result unless the variable t++ when in (t * t++) , only this moment and only...
I've already asked a similar question here in StackOverlow at:
However, taking a look at some of the strange things that exist in PHP, I have seen that the following expression returns true .
var_dump('2 porcos' + '3 cavalos' == '...
I need to use two different logical operators in same condition . How to do it right?
I did it this way:
if($planohabilitargestao!="1000" || $planohabilitargestao!="200" || $planohabilitargestao!="10000" && $usuario=="")
Even...