an unavailable function | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

an unavailable function

Why can't the sentence "gotoxy(int_x,int_y)"(conio.h) go on PC IDEs like Dev-Cpp?It's OK on C4droid.

6th Feb 2021, 2:38 AM
Elvish
Elvish - avatar
1 Réponse
+ 3
Because gotoxy() and conio.h both are non standard stuff that you are using, while you can still get away with using those if you are using an ancient compiler to compile your code, but can't do this in any modern standard C/C++ compiler. P.S. there is also a defination of gotoxy() in windows API header (windows.h) but that is platform dependent.
6th Feb 2021, 3:20 AM
Arsenic
Arsenic - avatar