I am trying to update my roguelike game, 'Get Out!!'. I have one simple question. How do I print an int at an xy coordinate using pdcurses and c++. i only know how to print char and const char[]. Thank you
Convert to a string using say sprintf(c) or stringstream(c++) Then output the string as you know how to.