gotoxy() move the cursor at specified location in the output screen.Syntax// gotoxy() function definition void gotoxy(int x, int y) { printf("%c[%d;%df", 0x1B, y, x); } ExampleConsider the example:#include <stdio.h> // gotoxy() function definition void gotoxy(int x, int y) ...
How can we use gotoxy statement in dev C++? Apr 21, 2012 at 9:02pm whitenite1 (1785) Pretty much the same as using it in MS Visual C++ Express, except you don't need using namespace Sysyem;. Here's a small demo of using the command gotoXY() in Dev-CPP v5.2.0.0, that com...