Single Choice
Not Set
QWhat will be the output of the program?
#include
int main()
{
const char *s = "";
char str[] = "Atnyla";
s = str;
while(*s)
printf("%c", *s++);
return 0;
}
ID: #1138
Constant in C Language
1,138 views
Question Info
#1138Q ID
Not SetDifficulty
Constant in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
Output:
Atnyla
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic