Question: C++ Program: 1) Consider the following structure declaration: struct registered { string title; int isbn; int quantity; float price; }; How many members are in
C++ Program:
1) Consider the following structure declaration:
struct registered { string title;
int isbn;
int quantity;
float price; };
How many members are in this structure declaration?
A) 0 B) 3 C) 4 D) 5.
2. Consider the following structure declaration:
struct registered { string title;
int isbn;
int quantity;
float price; };
How many variables of type "registered" are declared in this structure?
A) 0 B) 1 C) 3 D) 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
