Question: Consider the following struct definition and createAccount function. struct CDAccount { double initialBalance: double interestRate: int term: //months until maturity }: void createAccount(CDAccount& newAccount) {

Consider the following struct definition and createAccount function. struct CDAccount { double initialBalance: double interestRate: int term: //months until maturity }: void createAccount(CDAccount& newAccount) { cout > newAccount.balance: cout > newAccount.interestRate: cout > newAccount.term: a) What does the "&" character in the function parameter mean? b) Re-write the function create Account so that it will return newAccount instead
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
