Question: Not sure what the next step would be for the code to be working. #include enum emoticon {HAPPY = 1, SAD, EMBARASSED, SHOCKED}; void print_emoticon(enum

Not sure what the next step would be for the code to be working.

#include

enum emoticon {HAPPY = 1, SAD, EMBARASSED, SHOCKED};

void print_emoticon(enum emoticon e) { printf("^_^ "); }

void print_emoticon_options(void) { printf( "1: Happy " "2: Sad " "3: Embarassed " "4: Shocked "); }

int main(void) { printf("How are you feeling today? "); print_emoticon_options();

printf(" Please enter the number for your emoticon: "); int input; scanf("%d", &input);

print_emoticon(input); printf(" ");

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!