

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code (if run with no options or arguments)?#include <stdio.h> int main(int argc, char *argv[]) { printf("%d n", argc); return 0; } |
A. | Depends on the compiler |
B. | Nothing |
C. | 0 |
D. | 1 |
E. | None of these |
Answer» E. None of these | |