Advertisement
keeyres

forloop2

Dec 1st, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. int main()
  4. {
  5. int i;
  6. for(i=0;i<=255;i++)
  7. printf("This is the ASCII value of character %c: %d \n",i,i);
  8.  
  9. return 0;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement