Answer:
psuedocode is a way of organizing a program before you write it. There isn't really a set standard for it. Instead of writing a program in C write it in english.
if (the choice is equal to five)
{
printf("output reponse to user");
}
Doing this helps you to understand what your code will do and where before you actually write the program