I have a problem getting a character from the user in VC++.the function i want to use uses the char format so when i get the input using getch() it gives me an error that can't convert 'int' to 'char'. could someone please help me how to get the input in char format please?
edit:
char key1[10];
key1=getch();
Main.draw_text(key1,120+(i*40),250,White,Black,20);