

MCQOPTIONS
Saved Bookmarks
1. |
Point out the error in the program #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int i;_x000D_ #if A_x000D_ printf("Enter any number:");_x000D_ scanf("%d", &i);_x000D_ #elif B_x000D_ printf("The number is odd");_x000D_ return 0;_x000D_ } |
A. | Error: unexpected end of file because there is no matching #endif |
B. | The number is odd |
C. | Garbage values |
D. | None of above |
Answer» B. The number is odd | |