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