JAMIA 2022 — Computer PYQ
JAMIA | Computer | 2022What is the output of following C program?
#include <stdio.h>
int main ()
{
char grade [ ] = {‘A’, ‘B’, ‘C’} ;
printf (“GRADE=%C, “, *grade);
pringf (“GRADE = %d”, grade);
return 0;
}

