c programming comma in between the while loop conditions

 while(a<10, b<20) c++;

here the comma is treated as operator

the extreme right condition get evaluated.


int a;

a = 1, 2, 3;



Comments

Popular Posts