C Program to convert ASCII value to character. / सी प्रोग्राम ASCII मूल्य को वर्ण में परिवर्तित करने के लिए।












C Program to convert ASCII value to character




C Program to convert ASCII value to character



#include <stdio.h> int main() { int as; printf("\n Enter any ASCII value :"); scanf("%d",&as); printf("\n To convert ASCII value to character %c",as); return 0; }


Output:
Enter any ASCII value :97 To convert ASCII value to character a