• No categories

Manutenção

Estamos em manutenção, aguarde em breve nosso novo site.

Contato: webmaster@rpsinfo.com.br

#include <windows.h>

void gotoxy(int x, int y)
{
COORD c;
c.X = x – 1;
c.Y = y – 1;
SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c);
}

main()
{
gotoxy(10,10);
printf(“TESTE”);
getch();
}

Leave a Reply