#include <cstdlib> #include <iostream> using namespace std;
#include "Windows.h" void gotoxy(int x, int y)
{
COORD c; c. X = x - 1; c.Y = y - 1;
SetConsoleCursorPosition(GetStdHandle (STD_OUTPUT_HAI'IDLE) ,c)
> int main(int argc, char *argv[])
{
gotoxy(10,10); cout << "próba"; system("PAUSE") ; return EXIT_SUCCESS;