Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void main() {
  4. printf(12); // cls
  5.  
  6. printf("%c[%u;%uH",27,2,2); // locate
  7. printf("test");
  8.  
  9. printf("%c[%u;%uH",27,3,3); // locate
  10. printf("test");
  11.  
  12. printf("%c[%u;%uH",27,4,4); // locate
  13. printf("test");
  14.  
  15. while (!getk());
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement