I'd like to develop character based program with Tiny C Compiler. The putc works fine, but I want to print the character in a specific place on the character screen. Like in turbo pascal with gotoxy. Is there such a possibility? I'm looking through a bunch of header files, but couldn't find one.
#include <stdio.h>
int main(int argc, char **argv) {
// gotoxy(1,15); // ???????
putc(65,stdout);
}