rony-Rony_05

problem 12: ASCII

Jun 1st, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int i;
  6.  
  7.     for(i=0; i<=255; i++)
  8.     {
  9.         printf("ASCII value of character %c = %d\n", i, i);
  10.     }
  11.  
  12.     return 0;
  13.     }
Add Comment
Please, Sign In to add comment