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
What will be the output of the program #includestdio.hint main() char c=48; int i, mask=01; for(i=1; i=5; i++) printf(c, cmask); mask = mask1; return 0;
What is the notation for following functions 1. int f(int a, float b) / Some code /
Bit fields CANNOT be used in union.
Which of the statements is correct about the program #includestdio.hint main() float a=3.14; char j; j = (char)&a; printf(d\n, j); return 0;
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;