Advertisement
fouzimedfouni

FOR loop

Oct 18th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. main()
  3. {
  4. int A;
  5.  
  6.  
  7.  
  8. for(A = 0 ; A <= 20 ; A = A+3)/* For (Initiation ; Condition ; Increment)*/
  9.  
  10.   {
  11.   printf("HERE IS YOUR Numbers %d : \n",A);
  12.   }
  13. fflush(stdin);
  14. getchar();
  15.  
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement