gotoxy()move the cursor at specified location in the output screen. Syntax // gotoxy() function definitionvoidgotoxy(intx,inty) { printf("%c[%d;%df",0x1B, y, x); } Example Consider the example: #include <stdio.h>// gotoxy() function definitionvoidgotoxy(intx,inty) { printf("%c[...