Guest User

Untitled

a guest
Jan 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <windows.h> //N precisas disto se n usas a funcao gotoXY
  3. #include <conio.h> // N precisas disto
  4.  
  5.  
  6. main()
  7. {
  8. int i =32; //Declara aki e n em baixo
  9. //i=32;
  10. for(i;i<128;i++)
  11. {
  12. printf("ascii: %c\n",i);
  13. //gotoXY(10,12)
  14. printf("hex: %x\n",i);
  15.  
  16. }
  17. }
Add Comment
Please, Sign In to add comment