Write a declaration for a variable salesAnnualof type Money (a structured type with two int fields, dollars and cents) and initialize it to represent $1,325,023.47.

LANGUAGE: C++

CHALLENGE:

Write a declaration for a variable salesAnnualof type Money (a structured type with two int fields, dollars and cents) and initialize it to represent $1,325,023.47.

SOLUTION:



Money salesAnnual (1325023,47);