What is the output of this program?
#include <stdio.h>
void main()
{
int a =5, b = 6, c = 10
int x = a&& b || c++;
printf ("%d", c)
}
Any guess ?
#include <stdio.h>
void main()
{
int a =5, b = 6, c = 10
int x = a&& b || c++;
printf ("%d", c)
}
Any guess ?
0 comments: