Advertisement
immuntasir

Untitled

Apr 29th, 2015
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int num = 7, i, multiple;
  5.     for (i = 1 ; i<=10 ; i = i+1) {
  6.         multiple = num*i;
  7.         printf("%d x %d = %d\n", num, i, multiple);
  8.     }
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement