Q. What is the output of C Program?
Code:
int main()
{
int str[]={'g','l','o','b','y'};
printf("A%c ",str);
printf("A%s ",str);
printf("A%c ",str[0]);
return 0;
}
β
Correct Answer: (C)
A*randomchar* Ag Ag