Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(void){
  3. // Your code here!
  4. int start = 1;
  5. int goal = 10;
  6. int sum = 0;
  7. int i = 0;
  8. for(i = start;i <= goal;i++){
  9. printf("%d ",i);
  10. }
  11.  
  12.  
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment