+ 4
Is there a way to print statement in specific coordinates(x,y) in sololearn?(like gotoxy() in c++)
I can't seem to use gotoxy() function in sololearn as in c++.so is there a way to move cursor from one point to another?? Also can i use gotoxy() in c or is there any other way?
2 Respuestas
+ 2
This is an interesting question
+ 2
In c you can use goto statement like this :
goto label;
.
.
.
label: statement;
But I didn't test in SoloLearn and I dunno really is there a way to move cursor from one point to another..