Gotoxy is used to move the cursor on the monitor screen. Gotoxy follows a certain programming code to put the cursor in the desired position.
There is no gotoxy statement in C.
to locate coordinates ..
AnswerGotoXY is a function or procedure that positions the cursor at (X,Y), X in horizontal, Y in vertical direction relative to the origin of the current window. The origin is located at (1,1), the upper-left corner of the window. AnswerDescription This shows how to use the gotoxy function in C to move the text cursor to a different location on the screen Code#include#includeint main(void){int i;printf("This is the first line.\n");gotoxy(10,4);printf("This is the second line.\n");gotoxy(20,8);printf("And this is line 3.\n");return 0;}
gotoXY function is defined in conio.h, it places the cursor to the given position. If you have any question about it, use the built-in help.
There is no such function as gotoxy(). It was originally a standard function in conio.h, used to set the console cursor position, but it was deprecated because it was non-portable. While it may still exist in older C compilers, its usage would be frowned upon today and no known C or C++ compiler should support such a function these days. You are free to "roll your own" version of the function, of course. The following version works on Windows only. But given how little it actually adds to what already exists, and its non-portable nature it hardly seems worthwhile. #include <stdio.h> #include <conio.h> #include <windows.h> // Standard version: void gotoxy( COORD c ) { SetConsoleCursorPosition( GetStdHandle( STD_OUTPUT_HANDLE ), c ); } // Overloaded version emulating original gotoxy function: void gotoxy( int x, int y ) {COORD c;c.X = x;c.Y = y; gotoxy( c ); // call standard version }
There is no gotoxy statement in C.
It's in conio.h, but don't use gotoxy. Use SetCursorPosition() instead.
to locate coordinates ..
A function, defined in conio.h. Use the help.
gotoxy is a function in some programming languages, such as Turbo C, that is used to move the cursor position to a specific coordinate on the screen. This function is commonly used in text-based console applications to control where text or graphics are displayed.
AnswerGotoXY is a function or procedure that positions the cursor at (X,Y), X in horizontal, Y in vertical direction relative to the origin of the current window. The origin is located at (1,1), the upper-left corner of the window. AnswerDescription This shows how to use the gotoxy function in C to move the text cursor to a different location on the screen Code#include#includeint main(void){int i;printf("This is the first line.\n");gotoxy(10,4);printf("This is the second line.\n");gotoxy(20,8);printf("And this is line 3.\n");return 0;}
gotoXY function is defined in conio.h, it places the cursor to the given position. If you have any question about it, use the built-in help.
There is no such function as gotoxy(). It was originally a standard function in conio.h, used to set the console cursor position, but it was deprecated because it was non-portable. While it may still exist in older C compilers, its usage would be frowned upon today and no known C or C++ compiler should support such a function these days. You are free to "roll your own" version of the function, of course. The following version works on Windows only. But given how little it actually adds to what already exists, and its non-portable nature it hardly seems worthwhile. #include <stdio.h> #include <conio.h> #include <windows.h> // Standard version: void gotoxy( COORD c ) { SetConsoleCursorPosition( GetStdHandle( STD_OUTPUT_HANDLE ), c ); } // Overloaded version emulating original gotoxy function: void gotoxy( int x, int y ) {COORD c;c.X = x;c.Y = y; gotoxy( c ); // call standard version }
#include<stdio.h> #include<conio.h> #include<graphics.h> #include<stdlib.h> #define pf printf #define s scanf int gd=DETECT, gm, pa, o, b; int i; int x, y, i,ch,c; int c, m, p, qn, cm, mp, cp, cmp, n, k, p1, g,qcm,qmp,qcp,qc,qm,qp; void main() { initgraph(&gd,&gm," "); cleardevice(); line(0,0,639,0); line(0,0,0,479); line(639,0,639,479); line(639,479,0,479); line(589,479,0,479); randomize(); for(i=0;i<640;i++) { setcolor(i); x=rand()%639; y=rand()%480; putpixel (x,y,i); { setcolor(RED); settextstyle(3,0,5); outtextxy(60,100, "PROJECT IN DISCRETE"); setcolor(RED); settextstyle(3,0,5); outtextxy(80,135, "MATHEMATICS"); setcolor(i); settextstyle(2,0,5); outtextxy(120,192,"SUBMITTED BY :"); setcolor(i); settextstyle(2,0,5); outtextxy(120,202,"Cabrera"); setcolor(i); settextstyle(2,0,5); outtextxy(120,214,"Gaspar"); setcolor(i); settextstyle(2,0,5); outtextxy(120,226,"Molina"); setcolor(i); settextstyle(2,0,5); outtextxy(120,238,"Viray"); } setcolor(i); settextstyle(2,0,5); outtextxy(400,350,"U P L O A D i N G..."); setcolor(WHITE); outtextxy(i,378,"="); outtextxy(i,406,"="); setcolor(WHITE); circle(i,400,10); delay(1); } cleardevice(); gotoxy(10,7); pf("Enter 1 for V E N N D I A G R A M "); gotoxy(10,8); pf("Enter 2 for S E T N O T A T I O N"); gotoxy(10,10); printf("Input: "); s("%d",&pa); cleardevice(); { if(pa==1) { { line(0,0,639,0); line(0,0,0,479); line(639,0,639,479); line(639,479,0,479); line(589,479,0,479); randomize(); for(i=0;i<640;i++) { setcolor(i); x=rand()%639; y=rand()%480; putpixel (x,y,i); { setcolor(i); settextstyle(9,0,5); outtextxy(60,100, "V E N N"); setcolor(i); settextstyle(9,0,5); outtextxy(80,165, "D I A G R A M"); } setcolor(i); settextstyle(2,0,5); outtextxy(400,350,"U P L O A D i N G..."); setcolor(YELLOW); outtextxy(i,378,"="); outtextxy(i,406,"="); setcolor(WHITE); circle(i,400,10); delay(1); } sleep(1); cleardevice(); } gotoxy(10,7); pf("Enter 1 if the Outside is missing. 3 Circle. "); gotoxy(10,8); pf("Enter 2 if the Total is missing. 3 Circle."); gotoxy(10,11); printf("Choice : "); s("%d",&p1); for(g=1;g<=8;g++) { if(p1==1) { cleardevice(); gotoxy(32,8); pf("Input the Values for the following variables:"); gotoxy(32,11); pf("X:"); gotoxy(32,12); pf("Y:"); gotoxy(32,13); pf("Z:"); gotoxy(32,14); pf("XY:"); gotoxy(32,15); pf("XZ:"); gotoxy(32,16); pf("YZ:"); gotoxy(32,17); pf("XYZ:"); gotoxy(32,18); pf("Outside:"); gotoxy(32,19); pf("Total Number:"); { if(g==1){gotoxy(42,18);pf("----");gotoxy(42,11);s("%d",&c);} if(g==2){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);s("%d",&m);} if(g==3){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);s("%d",&p);} if(g==4){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);scanf("%d",&cm);} if(g==5){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);s("%d",&cp);} if(g==6){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);pf("%d",cp);gotoxy(42,16);s("%d",&mp);} if(g==7){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);pf("%d",cp);gotoxy(42,16);pf("%d",mp);gotoxy(42,17);s("%d",&cmp);} if(g==8){gotoxy(42,18);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);pf("%d",cp);gotoxy(42,16);pf("%d",mp);gotoxy(42,17);pf("%d",cmp);gotoxy(50,19);s("%d",&k);} cleardevice(); }} { qcm=cm-cmp; qmp=mp-cmp; qcp=cp-cmp; qc=c-(qcp+cmp+qcm); qm=m-(qcm+cmp+qmp); qp=p-(qcp+cmp+qmp); qn=k-(cmp+qcp+qcm+qmp+qc+qm+qp); } cleardevice(); setcolor(RED); rectangle(600,450,40,40); setcolor(YELLOW); circle(250,200,125); setcolor(GREEN); circle(375,200,125); setcolor(BLUE); circle(313,300,125); gotoxy(39,15); printf("%d",cmp); gotoxy(30,4); printf("X"); gotoxy(49,4); printf("Y"); gotoxy(23,12); printf("%d",qc); gotoxy(55,12); printf("%d",qm); gotoxy(39,23); printf("%d",qp); gotoxy(39,9); printf("%d",qcm); gotoxy(30,18); printf("%d",qcp); gotoxy(49,18); printf("%d",qmp); gotoxy(63,25); printf("%d",qn); gotoxy(39,27); setcolor(WHITE); outtextxy(310,435,"Z"); } for(g=1;g<=8;g++) { if(p1==2) {cleardevice(); gotoxy(32,8); pf("Input the Values for the following variables:"); gotoxy(32,11); pf("X:"); gotoxy(32,12); pf("Y:"); gotoxy(32,13); pf("Z:"); gotoxy(32,14); pf("XY:"); gotoxy(32,15); pf("XZ:"); gotoxy(32,16); pf("YZ:"); gotoxy(32,17); pf("XYZ:"); gotoxy(32,18); pf("Outside:"); gotoxy(32,19); pf("Total Number:"); { if(g==1){gotoxy(42,19);pf("----");gotoxy(42,11);s("%d",&c);} if(g==2){gotoxy(42,19);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);s("%d",&m);} if(g==3){gotoxy(42,19);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);s("%d",&p);} if(g==4){gotoxy(42,19);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);scanf("%d",&cm);} if(g==5){gotoxy(42,19);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);s("%d",&cp);} if(g==6){gotoxy(42,19);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);pf("%d",cp);gotoxy(42,16);s("%d",&mp);} if(g==7){gotoxy(42,19);pf("----");gotoxy(42,11);pf("%d",c);gotoxy(42,12);pf("%d",m);gotoxy(42,13);pf("%d",p);gotoxy(42,14);pf("%d",cm);gotoxy(42,15);pf("%d",cp);gotoxy(42,16);pf("%d",mp);gotoxy(42,17);pf("%d",cmp);gotoxy(42,18);s("%d",&n);} cleardevice(); }} { qcm=cm-cmp; qmp=mp-cmp; qcp=cp-cmp; qc=c-(qcp+cmp+qcm); qm=m-(qcm+cmp+qmp); qp=p-(qcp+cmp+qmp); qn=k-(cmp+qcp+qcm+qmp+qc+qm+qp); } cleardevice(); setcolor(RED); rectangle(600,450,40,40); setcolor(YELLOW); circle(250,200,125); setcolor(GREEN); circle(375,200,125); setcolor(BLUE); circle(313,300,125); gotoxy(39,15); printf("%d",cmp); gotoxy(30,4); printf("X"); gotoxy(49,4); printf("Y"); gotoxy(23,12); printf("%d",qc); gotoxy(55,12); printf("%d",qm); gotoxy(39,23); printf("%d",qp); gotoxy(39,9); printf("%d",qcm); gotoxy(30,18); printf("%d",qcp); gotoxy(49,18); printf("%d",qmp); gotoxy(63,25); printf("%d",qn); gotoxy(39,27); setcolor(WHITE); outtextxy(310,435,"Z"); } } getche(); } { if(pa==2) { { line(0,0,639,0); line(0,0,0,479); line(639,0,639,479); line(639,479,0,479); line(589,479,0,479); randomize(); for(i=0;i<640;i++) { setcolor(i); x=rand()%639; y=rand()%480; putpixel (x,y,i); { setcolor(i); settextstyle(9,0,5); outtextxy(60,100, "S E T"); setcolor(i); settextstyle(9,0,5); outtextxy(50,165, "N O T A T I O N"); } setcolor(i); settextstyle(2,0,5); outtextxy(400,350,"U P L O A D i N G..."); setcolor(YELLOW); outtextxy(i,378,"="); outtextxy(i,406,"="); setcolor(WHITE); circle(i,400,10); delay(1); } sleep(1); cleardevice(); } printf("ogi"); getche(); } } cleardevice(); gotoxy(10,10); printf("--END--"); getche(); }
Best Answer - Chosen by Voters#include #includemain(){int i;clrscr();for(i=10;i
gotoXY from conio.h
Ideally you would not manipulate std::cout using such a low-level function. Console output is intentionally generic so that output can be easily redirected to any output device that accepts a character stream. As such, this code will not work correctly if the user were to redirect output to a disk file or a printer, or use the output as input to another program. If you wish to format screen output in a non-generic manner, do not use the console, use a screen-specific context device instead. #include<iostream> #include<string> #ifdef WIN32 #include<windows.h> #endif WIN32 void gotoxy(int x, int y) { #ifdef WIN32 static HANDLE h = NULL; if(!h) h = GetStdHandle (STD_OUTPUT_HANDLE); COORD c = { x, y }; SetConsoleCursorPosition (h,c); #elif linux printf("%c[%d;%df",0x1B,y,x); #else static_assert (false, "unsupported platform in gotoxy()"); #endif WIN32 } void draw_box(unsigned x, unsigned y, unsigned width, unsigned height) { gotoxy (x, y); std::cout << std::string (width, '*'); for (unsigned z=2; z<height; ++z) { gotoxy (x, ++y); std::cout << "*"; gotoxy (x+width-1, y); std::cout << "*"; } gotoxy (x,++y); std::cout << std::string (width, '*'); } int main() { draw_box(10,10,5,4); // draw 5x4 box at {10,10} gotoxy (0,25); }