In a C++ structure, which of the following statements tells the compiler to allocate memory for an instance of the structure?
In a C++ structure, which of the following statements tells the compiler to allocate memory for an instance of the structure?
Explanation
In C++, when you use a statement like StructName var;,
it tells the compiler to allocate memory for an instance of the structure StructName.