Question: 2 3 . Given the following code fragment struct card { char * face; char * suit; } ; Which of the following are correct:
Given the following code fragment
struct card
char face;
char suit;
;
Which of the following are correct:
A struct card a Two "Hearts";
B struct card b; bface "Two"; bsuit"Hearts";
C typedef struct card Card;
Card c Four "Spades";
D All of the above.
E None of the above.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
