#include void printChar(char a) { putchar(a); //Function in stdio.h that prints a character } int main() { char userInput[20]; //Our 20 byte buffer printChar('?'); //Prints question mark printChar(' '); //Prints a space gets(userInput); //Gets sucks! return 0; //Then returns to Windows }