Question: Instructions: C++ a) Use scanf function to accept the input from the user. b) Use floating point inputs wherever possible. | Define a structure with

Instructions: C++ a) Use scanf function to accept the input from the user. b) Use floating point inputs wherever possible. | Define a structure with the tag Xxx to consist of an integer (aa), and a double (bb). Then in the main function, declare mm to be a variable of type struct Xxx, and pp to be a pointer variable of type struct Xxx. 1. Then, use the dot operator (.) to assign the following values to the members of the structure variable mm as per the following Table: Variable name Member name Value 23.2 Now, remember that pp and mm are related as pp-&mm. Use the pointer variable pp to assign the following values to the members of the structure variable pp, which are aa and bb as per the following Table: Value 12 97.2 Variable name Member name Finally, use the printf.) statement to print out all these four numerical values using the dot operator (.) applied between variables and its members
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
