C Programming to display any Character by G Krishna Chauhan

C Programming to display any Character


#include<stdio.h>
#include<conio.h>
void main ()
{    
char  a='G',b='K'; 
printf("Value of a is %c",a); 
printf("Value of b is %c",b);
getch();
}

No comments:

Post a Comment