MCQOPTIONS
Saved Bookmarks
| 1. |
Predict the output of the following program: #include int main() { char str[] = "%d %c", arr[] = "GeeksQuiz"; printf(str, 0[arr], 2[arr + 3]); return 0; } |
| A. | G Q |
| B. | 71 81 |
| C. | 71 Q |
| D. | Compile-time error |
| Answer» D. Compile-time error | |