Question: Code must be written with C++ Create struct for bank account. Let struct has attributes: int account number; double balance; In main function, create two
Code must be written with C++

Create struct for bank account. Let struct has attributes: int account number; double balance; In main function, create two struct variables from bank account. Give default values for account number and balance. Then, define a reference variable to a struct and let reference variable point to one of the variables. Then print the reference variable. After that, use same reference variable for other variable. Then print. (*p). balance = 1000.000000 After p = &a (*p).accNum = 123 After p = &b (*p).accNum = 444 (*p). balance = 3000.000000 Process exited after 0.03487 seconds with return value o Press any key to continue
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
