Solved

Which of the Following Struct Definitions Is Correct in C \quad

Question 30

Multiple Choice

Which of the following struct definitions is correct in C++?


A) struct studentType
{
\quad int ID;
};
B) struct studentType
{
\quad string name;
\quad int ID;
\quad double gpa;
}
C) int struct studentType
{
\quad ID;
}
D) struct studentType
{
\quad int ID = 1;
};

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions