Advertisement
Josif_tepe

Untitled

Nov 19th, 2023
580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main (int argc, const char * argv[]) {
  5.    
  6.    
  7.     for(int i = 10; i >= 1; i--) {
  8.         printf("%d ", i);
  9.     }
  10.  
  11.  
  12. return 0;
  13.  
  14. }
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement