What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
struct ShoeType
{
string style;
double price;
};
ShoeType shoe1, shoe2;
shoe1.style = "Adidas";
shoe1.price = 9.99;
cout << shoe1.style << " $ "<< shoe1.price;
shoe2 = shoe1;
shoe2.price = shoe2.price / 9;
cout << shoe2.style << " $ "<< shoe2.price;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
struct ShoeType
{
string style;
double price;
};
ShoeType shoe1, shoe2;
shoe1.style = "Adidas";
shoe1.price = 9.99;
cout << shoe1.style << " $ "<< shoe1.price;
shoe2 = shoe1;
shoe2.price = shoe2.price / 9;
cout << shoe2.style << " $ "<< shoe2.price;
return 0;
}A. Adidas $ 9.99Adidas $ 1.11
B. Adidas $ 9.99Adidas $ 9.11
C. Adidas $ 9.99Adidas $ 11.11
D. Adidas $ 11.11Adidas $ 11.11
Answer: Option A
Related Questions on Structures and Unions in C plus plus
A. A collection of functions
B. A reserved keyword in C++
C. A user-defined data type containing variables of different data types
D. A way to declare arrays of data
What is the correct way to access members of a structure in C++?
A. Using the star operator
B. Using the double colon operator
C. Using the dot operator
D. Using the arrow operator
What is the purpose of typedef in C++ structures?
A. To define a new structure
B. To initialize structure members
C. To create a pointer to a structure
D. To create an alias for data types

Join The Discussion