I am trying to use gotoxy() function on Dev-C++ compiler but I keep getting undefined reference to gotoxy Any idea why? I tried with the sample program and still the same. Code: #include<stdio.h> #include<windows.h> #include<conio.h> int main() { printf("Hello!"); gotoxy(10,10); printf("World"); return 0; }
gotoxy is not the function supported by many compilers and I mainly used in old TC days. It is not even supported by MSVC and many others.