Ghislain_Mike

Count form 10 to 20

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