Ticker

6/recent/ticker-posts

Ascii Value to Character

 Ascii Value to Character


#include<stdio.h>

void main()

{

    int h;

    printf("enter a character ascii:\n");

    scanf("%d",&h);

    printf("%c\n",h);

}


output:

enter a character ascii:

97

a


కామెంట్‌ను పోస్ట్ చేయండి

0 కామెంట్‌లు