Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3.  
  4. void main() {
  5. int i;
  6. int z;
  7. for(i=1;i<=10;i++) {
  8. for(z=1;z<=10;z++) {
  9. printf("%d ",z*i);
  10. }
  11. printf("\n");
  12. }
  13. getch ();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement