How do I ask a yes or no question in C?
The code is supposed to take the users name and make it a string (which works). Afterwards it continues and asks the user if they're ready to start their journey (it's going to be a simple text adventure game). This, unfortunately, does not work because I'm unable to ask a yes/no question because I don't know how. Google searches and searching Stack Overflow didn't fix the problem either.
This is what I have thus far:
#include <stdio.h>
int main()
{
/*This declares the strings*/
char name[20];
char yesno[3];
char choice[1];
/*This tells the user that they should only use Y/N when responding to Yes or No questions.*/
printf("When responding to Yes or No questions use Y/N.\n");
/*This asks the user what their name is and allows the program to use it as a string for the rest of the program*/
printf("Hello! What is your name?\n");
scanf("%s",name);
printf("Hello %s, are you ready for your journey?\n",name);
scanf("%c",choice);
char choice, 'Y';
while (choice != 'N' && choice == 'Y')
{
printf("Okay!Let's continue %s.\n",name);
}
char choice,'N';
while (choice != 'Y' && choice == 'N')
{
printf("Goodbye.\n");
}
return 0;
}
char choice, 'Y';is not valid C. However, why aren't you able to read a yes or no response? Are you seeking to read it without the user hitting return to end the line of input? If so, you will need to use a system-specific mechanism to read the answer — and you need to identify which system you're working on since the answer varies depending on the system. – Jonathan Leffler Feb 3 at 3:06