Advertisement
dllbridge

Untitled

Dec 2nd, 2024
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3.  
  4.  
  5.  
  6. /////////////////////////////////////////////////
  7. int main()
  8. {
  9.  
  10.     char cn = 123;
  11.    
  12.     for(int i = 0; i < 10; i++)
  13.     {
  14.  
  15.         printf("%5d\n", cn);
  16.        
  17.         cn++;
  18.     }
  19.    
  20.  
  21.  
  22.  
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.    
  32. //  for (char i =-123; i<-1; i--)
  33. //  {
  34.        
  35. //      printf("%d\n", i);
  36. //  }
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48. /*
  49. #include <stdio.h>
  50.  
  51.  
  52.  
  53.  
  54.  
  55. ////////////////////////////////////////////
  56. int main ()
  57. {
  58.    
  59.     char cn = 123;
  60.  
  61.     for(int i = 0; i < 11; i++)
  62.     {
  63.            
  64.          printf("%4d\n", cn);  
  65.          cn ++;  
  66.     }
  67. }
  68.  
  69. */
  70.  
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement