Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5. printf("Multiplication Tables");
  6. for (int i =1;i<=12;i++){
  7. printf("Table %d : \n",i);
  8. for (int j=1;j<=12;j++)
  9. printf("%d * %d = %d\n",i,j,i*j);
  10. printf("\n");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement