MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { char str[12][16] = {"Ajit", "Kumar"}; printf("%s", *str + 0); return 0; } |
| A. | Compilation Error |
| B. | Kumar |
| C. | Ajit |
| D. | Garbage value |
| E. | None of these |
| Answer» D. Garbage value | |