Facebook
From biplob ahmed, 1 Month ago, written in C.
Embed
Download Paste or View Raw
Hits: 144
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int asciiValue;
  5.  
  6.     printf("Enter the ASCII value: ");
  7.     scanf("%d", &asciiValue;);
  8.  
  9.     printf("The character corresponding to ASCII value is '%c'.\n", asciiValue, asciiValue);
  10.  
  11.     return 0;
  12. }
  13.