

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int num1 = 5; int num2 = 10 % 3 * 12 / 4; printf("Value of num is %d", num2); } |
A. | Value of num is 0 |
B. | Value of num is 1 |
C. | Value of num is 2 |
D. | Value of num is 3 |
E. | None of these |
Answer» E. None of these | |