4.10 What is the output of the following program?
main ()
char x;
int y:
x = 100;
y = 125;
printf ("%c\n", X) ;
printf ("%c\n", y);
printf ("%d\n", x);
}
Answers
Answered by
3
Answer:
output will be
d
close curly bracket
100
Similar questions