MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code (run without any command line arguments)? #include <stdio.h> int main(int argc, char *argv[]) { while (argc--) printf("%s n", argv[argc]); return 0; } |
| A. | Compilation Error |
| B. | Segmentation fault |
| C. | Undefined behaviour |
| D. | Nothing |
| E. | main |
| Answer» F. | |