If I have a struct like
struct account { int account_number; };
Then what\'s the difference between doing
myAccount.acco
If myAccount is a pointer, use this syntax:
myAccount
myAccount->account_number;
If it's not, use this one instead:
myAccount.account_number;