What is output of the code?
 #include<stdio.h>
 int main()
 {
 int a=5,b= 5, c=0,d;
 d= a && b || ++c;
 printf("%d%d%d%d", a,b,c,d);
 return 0;
 }

Posted on by