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