Josif_tepe

Untitled

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