home
Learn
screen_rotation
#include <stdio.h> #include <conio.h> void main(){ char a = 'M'; clrscr(); printf("value of a = %c",a); getch(); }
Program Output
value of a = M