Predict the output of the following code snippet.
Predict the output of the following code snippet.
#include
int mainO
{
char name[ ] = “ADELINE”;
for(int i=0; name[i]!=’\0′;i++)
putchar(name[i]);
}
4 views