Advertisement
QUIZERA

MULTIPLICATIO

Feb 17th, 2019
404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include<stdio.h>
  2. int main(){
  3. int i;
  4. multiplication();
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. return 0;
  12. }
  13.  
  14. void multiplication(){
  15. int i, MULTIPLICATION;
  16. for (i=0; i<11;i++){
  17.     MULTIPLICATION=i*5;
  18.     printf("%d x 5 = %d\n", i, MULTIPLICATION);
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement