Question: Here is C structure. struct name { char first [50]; // First name char last[50]; // Last name }; Let's assume a variable called candidate
![Here is C structure. struct name { char first [50]; //](https://s3.amazonaws.com/si.experts.images/answers/2024/09/66deacbbab83a_24366deacbb1adc7.jpg)
Here is C structure. struct name { char first [50]; // First name char last[50]; // Last name }; Let's assume a variable called candidate has been declared as the above structure and initialized appropriately. The following line of code outputs the name of the candidate variable with the first name shown before the last name. printf("%s %s ", X, Y); What is the code you need to use in position X and Y inside the above code? You need to write the answers clearly in the boxes below. Y =
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
