SAADQUAMER

ASCII values of all characters

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