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