Login
C Programming
1)
In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators.
A)
True
B)
False
C)
4,4
D)
Output may vary from compiler to compiler
Next
Show Answer:
Show Answer
More Question
Which of the following statements are correct about the function long fun(int num) int i; long f=1; for(i=1; i=num; i++) f = f i; return f;
What will be the output of the program #includestdio.hint main() int i=4, j=8; printf(d, d, d\n, ij&ji, ij&ji, i^j); return 0;
What will be the output of the program #includestdio.hint main() char p; p=hello; printf(s\n, &&p); return 0;
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
Bit fields CANNOT be used in union.