Q. What is the output of C program with array of pointers to strings.?
Code:int main()
{
char *code[]={"IN","USA","K"};
printf("%s", code[1]);
return 0;
}
β
Correct Answer: (C)
USA
int main()
{
char *code[]={"IN","USA","K"};
printf("%s", code[1]);
return 0;
}
You must be Logged in to update hint/solution