Header Ads Widget

Responsive Advertisement

ASCII

 #include<stdio.h>

int main ()

{

    char c;

    printf("Enter the value of character : ");

    scanf("%c", &c);

    printf("ASCII value of %c = %d",c,c);

    getch ();

}


Post a Comment

0 Comments