Guest User

Untitled

a guest
Jun 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. {
  2. int i,j;
  3.  
  4. char o[4][24]=
  5.  
  6. gotoxy(x,y);
  7.  
  8. for(i=0; i<4; i++)
  9.  
  10. {
  11.  
  12. for(j=0; j<24; j++)
  13. {
  14.  
  15. printf("%c", o[i][j]);
  16. }
  17.  
  18. gotoxy(x,y+i+1);
  19. }
  20.  
  21. }
Add Comment
Please, Sign In to add comment