Advertisement
Josif_tepe

Untitled

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