11.
What is the size of the following structure in C++: struct Employee { int id; char name[20]; float salary; };

15.
What does the 'sizeof' operator return when used with a structure in C++?

16.
What is the correct syntax to declare a structure with a tag name in C++?

17.
What is the correct way to access structure members through a pointer in C++?

18.
What is the difference between a structure and a class in C++?

19.
What is the output of the following code: struct Point { int x, y; }; Point p1; p1.x = 10; p1.y = 20; cout << p1.x << " " << p1.y; in C++?

20.
What is the purpose of the 'typedef' keyword in C++ structures?