MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? int main() { printf("C programming %s", "Class by n%s AllIndiaExams", "SUPER"); } |
| A. | C programming Class by SUPER AllIndiaExams |
| B. | C programming Class by n%s AllIndiaExams |
| C. | C programming Class by %s AllIndiaExams |
| D. | Compilation error |
| Answer» D. Compilation error | |