Using the Union declaration below, how many bytes of memory space will the data of this type occupy?cunion Cars { char make[20]; char model[30]; short year;} car;

🎲 Try a Random Question  |  Total Questions in Quiz: 49  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C (Programming Language) Quiz — practice the complete quiz, review flashcards, or try a random question.

C (Programming Language) MCQs For LinkedIn Skill Assessments.


Using the Union declaration below, how many bytes of memory space will the data of this type occupy?<br>c<br>union Cars {<br> char make[20];<br> char model[30];<br> short year;<br>} car;<br>