Login
C Programming
1)
Bit fields CANNOT be used in union.
A)
True
B)
False
C)
32, 1, 12
D)
-64, 1, 12
Next
Show Answer:
Show Answer
More Question
The keyword used to transfer control from a function back to the calling function is
Will the program compile in Turbo C #includestdio.hint main() int a=10, j; void k; j=k=&a; j++; k++; printf(u u\n, j, k); return 0;
A preprocessor directive is a message from programmer to the preprocessor.
How many times the while loop will get executed if a short int is 2 byte wide #includestdio.hint main() int j=1; while(j = 255) printf(c d\n, j, j); j++; return 0;
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;