2
Which library could be used to compile a C code that uses the functions gotoxy()
and textcolor()
, by Code::Blocks 16.1, Windows 7 environment?
I’m using:
stdio.h
, conio.h
, windows.h
and stdlib.h
but it’s not working, I’m getting the bugs:
undefined reference to gotoxy
and
undefined reference to textcolor.
Grateful.
Show the code you are using. It should be working with conium. h, from what I understand.
– Pablo Almeida
I believe that the original code ran on Linux, because it did not use windows. h and used conio2.h: The original code is at this link: http://codigosfontes-ccplus-plus.blogspot.com.br/2012/11/convertendo-matriz-bidimensional-em.html Thank you.
– Laerte M. Jr.