#includestdio.henum flg{a, b, c};enum glf{c, e, f};main(){enum flg h;h = b;printf("%d", h);return 0;}
#includestdio.hint main(){int i = 5, j = 6, k = 7;if(i j == k)printf("%d %d %d", i++, ++j, --k);elseprintf("%d %d %d", ++i, j, --k);return 0;}
#includestdio.hvoid main(){int x=15;int y=20;if(x==15){if(y30){printf("X=15 and Y=20\n");}}elseprintf("invalid");}
#includestdio.hint main(){int s={1,2,3};if(s!=1)printf("hi");else if((++s)==2)printf("hello");elseprintf("hihello");}
#includestdio.hPredict the output of the following code snippetvoid main(){int x={3};if (x1)printf("GMIT");if (x==3)printf("AIML");elseprintf("GMIT AIML");}
#include stdio.hint main() {int i=0,a={++i,i++,++i};printf("i=%d\na=%d\n",i,a);if(a==1)printf("ok");elseprintf("be");return 0;}
#include stdio.hint main() {int a[3]={10,11,12};int i = 0;while (i 3){printf("%d\n", a[i]);i++;}if(a[i]==0){printf("khushi");}else if(a[i]==1){printf("patil");}else{printf("AIML GMIT");}return 0;}