I know this question is asked a lot but after trying the suggestions in other post
i'm out of ideas.
so my error is:
error LNK2019: unresolved external symbol "public: void __thiscall table::gotoXY(int,int)" (?gotoXY@table@@QAEXHH@Z) referenced in function "public: void __thiscall table::turns(void)" (?turns@table@@QAEXXZ)
I have the code if its needed but its rather large.
Let me guess - one of these:
1: You are wanting to use the gotoxy function which is in the non-standard conio.h, you included conio.h but misnamed the function gotoXY instead.
2: You have your own gotoXY function, but didn't write a definition for it.
3: You haven't listed the .cpp file in your project.
4: conio.h is not implemented in your compiler.
What IDE / compiler are you using?
I wrote my own gotoXY function and i know it works because i've tested it.
I'm using visual studio 2010.
well it seems its working just fine on my partners computer so i guess it doesnt matter now, thanks anyway