Guest User

Untitled

a guest
Jan 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. void PantallaIntro(void){
  2.     char a[81];
  3.     int i,j;
  4.    
  5.     printf("                              Accesorios Personales\n");
  6.    
  7.     for(j=0;j<5;j++){
  8.         for(i=0;i<80;i++){
  9.             printf("*");
  10.         }
  11.         printf("\n");
  12.     }
  13.    
  14.     printf("                              UTN-FRSF-AEDD-");Fecha();printf("\n");
  15.    
  16.     for(j=0;j<5;j++){
  17.         for(i=0;i<80;i++){
  18.             printf("*");
  19.         }
  20.         printf("\n");
  21.     }
  22. }
Add Comment
Please, Sign In to add comment