I'm trying to understand an example program from a book but there's a line of code that I can't understand what is for. Can anybody tell me. Thanks
#include "stdafx.h"
#include<iostream>
using namespace std;
// structure for a bank certificate of deposit:
struct CDAccountV1
{
double balance;
double interestRate;
int term;//months until maturity
};
void getData(CDAccountV1& theAccount);
//postcondition: theAccount.balance, theAccount.interestRate and
// the Account.term have been given values that the user entered at the keyboard.
int main()
{
CDAccountV1 account;//<--------------------------------THIS ONE
getData(account);