Advertisement
Tahamina_Taha

Convert ASCII value into character

Aug 17th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. // Convert ASCII value into character
  4. {
  5.     int i;
  6.     printf("Please enter any ASCII valur: \n");
  7.     scanf("%d",&i);
  8.     printf("The ASCII character is : %c",i);
  9.     return 0;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement