gotoxy() is character oriented (and only works in MS-DOS character mode). You cannot draw a character at a specific pixel position using gotoxy() and you cannot do it in character mode in any case.
Support for 16 bit MS-DOS applications using graphics modes is limited and troublesome on modern Windows systems. You would do better to discard your 30 year old compiler and use something that will directly target the actual OS you are running on! You can then create an application that uses a graphics window and GDI calls (or any number of higher level APIs) to draw text at any position, any size, and any font.