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
🧾 Program Statement Write a C program to accept a character from the user and displ…
0 కామెంట్లు