Advertisement
akash_tech

Demo

Jan 22nd, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.  
  5. int n = 1;
  6. while( n <= 10) {
  7. print("%d\n", n);
  8. n++;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement