Advertisement
mahatma_xande

ex01lista05

Aug 22nd, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. /*
  2. It prints first 256 ASCII signs.
  3. */
  4.  
  5. #include <stdio.h>
  6.  
  7. int main(){
  8.  
  9.     int k;
  10.  
  11.     for(k = 1; k < 257; k = k + 1){
  12.         printf("%4d - %c", k, k);
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement