Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // C program to print ASCII values of all characters
- #include<stdio.h>
- int main(){
- int i;
- for(i=0;i<=255;i++){printf("ASCII values of character %c is = %d\n",i,i);}
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment