C Programming :: Expressions
-
What will be the output of the program?
#include
int main() { int i=-3, j=2, k=0, m; m = ++i && ++j && ++k; printf("%d, %d, %d, %d\n", i, j, k, m); return 0; } -
Assuming, integer is 2 byte, 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
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
int main() { int i=-3, j=2, k=0, m; m = ++i && ++j || ++k; printf("%d, %d, %d, %d\n", i, j, k, m); return 0; } -
What will be the output of the program?
#include
-
What will be the output of the program?
#include
int main() { int i=3; i = i++; printf("%d\n", i); return 0; } -
What will be the output of the program?
#include