Question: 9
(Choose 2 answers)
FJOVERFLOW.COM
Which of the following is a valid way to declare a structure in C/C++?
A. struct Person {
};
int age;
char name[50];
B. struct Person {
};
age int;
name char[50];
C. struct Person {
int age;
string name;
{
D. All of the others