/* This is the Grim Message Manager, purpose is self- explanatory :D. Anyhoo, it's written mostly in C. Forgive my poor program editing, I wrote this in DOS Edit. */ #include int main() { /* This inits the number that will be used for the choice. */ int chonum; /* This SHOULD init the string of characters that you can type in for chonum 2. */ char newmessage[1000]; printf("Welcome to the Grim Message Manager!\n"); printf("If you want to view your messages, type 1. If you want to create a new message, type 2.\n"); // This will look for input of numbers 1 or 2 from the keyboard. scanf("%d", &chonum); if (chonum == 1) printf("TODO"); if (chonum == 2) { printf("Ok, please type in your message. It can't be longer then 1000 characters, at least not until I get around this hack...\n"); scanf("%s", newmessage); printf("%s" "can't be stored, I have to research how to do that.\n", newmessage); } return 0; }