+ 2
while(2,3) is valid in c language? If valid then which argument will used ?
7 Respuestas
+ 3
Changed:
This becomes
while (3)
which becomes
while (3 != 0)
which becomes
while (true)
+ 2
Yes, so this becomes
while (2)
which becomes
while (2 != 0)
which becomes
while (true)
+ 2
K
+ 2
I know, it is a further explanation.