Podcast Beta
Questions and Answers
Explain the purpose of a structure in C++ and provide an example.
A structure in C++ is a user-defined data type that allows the programmer to represent a collection of logically related data items, which may be of different types, under a common name. An example of a structure in C++ is:
struct student {
int adm_no;
char name;
char group;
float fee;
}
What happens if values are not provided for all the elements of a structure during initialization?
If values are not provided for all the elements of a structure during initialization, the given values will be assigned to the elements on a First Come First Served (FCFS) basis. The remaining elements will be assigned with 0 (zero) or '\0' (null character) depending on numeric or string.
Write a C++ statement to initialize the student structure provided in the text.
A C++ statement to initialize the student structure provided in the text is:
student S={101, "Amith", "Computer Science", 20000}
What is the purpose of the data types specified within the pair of braces when declaring variables of a structure?
Signup and view all the answers
How is the size of the structure 'student' determined in C++?
Signup and view all the answers