Sail E0 Webinar
Question


Which of the structure is correct?
1:


struct book
{
char name[10];
float price;
int pages;
};
2 :


struct aa
{
char name[10];
float price;
int pages;
};
3 :


struct aa
{
char name[10];
float price;
int pages;
};
Options:
A .  1
B .  2
C .  3
D .  All of above
Answer: Option A

In 2 and 3 semicolon are missing in structure element.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers