/* Exemplo de gotoxy */ #include int main(void) { clrscr(); gotoxy(34, 12); cprintf("Ola mundo"); getch(); return 0; }