Advertisement
savovaap_

From 1 to 10

Mar 29th, 2023
742
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.  
  5.     int e;
  6.  
  7.     for(e = 1; e <= 10; e++){
  8.         printf("%d", e);
  9.         printf(" ");
  10.     }
  11.    
  12.     return 0;
  13.    
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement