Advertisement
Guest User

Untitled

a guest
Feb 24th, 2011
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include<stdlib.h>
  2. #include<stdio.h>
  3.  
  4. main()
  5. {
  6.     int c,i;
  7.    
  8.    
  9.     for(c=1;c<5;c++)
  10.     {  
  11.        for(i=1;i<5;i++) {
  12.     printf("Eu sou um programa em C\n");
  13.         }
  14.  
  15.     }
  16.     getch();  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement