Question #278049

Make a sample program using gotoxy function.


Expert's answer





#include <stdio.h>
#include <windows.h>




int main()
{
	// Input data
	COORD c;
	c.X = 40;
	c.Y = 16;


	SetConsoleCursorPosition(
		GetStdHandle(STD_OUTPUT_HANDLE), c);


	printf("gotoxy() ");
	getch();
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS