Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdlib.h>
- #include<stdio.h>
- main()
- {
- int c,i;
- for(c=1;c<5;c++)
- {
- for(i=1;i<5;i++) {
- printf("Eu sou um programa em C\n");
- }
- }
- getch();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement