C Programming :: Control Instructions
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
int main() { int a = 500, b = 100, c; if(!a >= 400) b = 300; c = 200; printf("b = %d c = %d\n", b, c); return 0; } -
What will be the output of the program?
#include
-
What will be the output of the program?
#include
-
What will be the output of the program, if a short int is 2 bytes wide?
#include
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
int main() { int a=0, b=1, c=3; *((a) ? &b : &a) = a ? b : c; printf("%d, %d, %d\n", a, b, c); return 0; }