Question: Consider the following statements: struct personalInfo { string name; int age; float height; float weight; } ; struct commonInfo { string name; int age; }
Consider the following statements:
struct personalInfo
string name;
int age;
float height;
float weight;
;
struct commonInfo
string name;
int age;
;
personalInfo person person;
commonInfo person person;
Which of the following statements is valid in C
a
person person;
b
person person;
c
person person;
d
person person;
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
