#include #include #include #include #include #include "quizproject.h" void displayWelcomeMessage(void) { printf("\t\t------------------------------------------\n\n"); printf("\t\t------------------------------------------\n\n"); printf("\t\t Welcome to The Quiz \n\n"); printf("\t\t------------------------------------------\n"); printf("\t\t------------------------------------------\n\n"); printf("\t\t Press 'Enter' to begin the Game \n"); char startGame; scanf("%c", &startGame); startGame = toupper(startGame); if (startGame != ' ') { char name[100] = {0}; printf("\t\t Please enter your First Name \n"); scanf("%s", name); } } int main(){ displayWelcomeMessage(); return 0; }