Q. What is the output of C Program?
Code:
int main()
{
char grade[] = {'A','B','C'};
printf("GRADE=%c, ", *grade);
printf("GRADE=%d", grade);
}
β
Correct Answer: (B)
GRADE=A, GRADE=some address of array