//get choice input
int n;
scanf ("%d",&n);
// print the option that the user entered i.e. you chose option 2
printf("you chose option %n /n" ,n);
Sorry for the newbie question; I haven’t done C coding before!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only problem i see with that code is the descriptor from
printf. It should be%d. Also is\nnot/nfor the new line ( but that doesn’t cause any problems). So try this: