while(2,3) is valid in c language? If valid then which argument will used ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

while(2,3) is valid in c language? If valid then which argument will used ?

26th Feb 2018, 1:53 PM
Nishigandha Bhukan
Nishigandha Bhukan - avatar
4 Answers
+ 3
Changed: This becomes while (3) which becomes while (3 != 0) which becomes while (true)
27th Feb 2018, 10:13 AM
Timon Paßlick
+ 2
Yes, so this becomes while (2) which becomes while (2 != 0) which becomes while (true)
27th Feb 2018, 6:02 AM
Timon Paßlick
+ 2
K
27th Feb 2018, 10:01 AM
Timon Paßlick
+ 2
I know, it is a further explanation.
27th Feb 2018, 11:05 AM
Timon Paßlick