Saved Bookmarks
| 1. |
Predict the output of the following code snippet. #include<cstdio>int mainO { char name[ ] = “ADELINE”; for(int i=0; name[i]!=’\0′;i++) putchar(name[i]); } |
|
Answer» The output is “ADELINE”. |
|