Advertisement
Guest User

Untitled

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