Question
It is never too early to start investing for retirement. Retirement investment accounts usually provide tax benefits such as contributions are pretax and capital gains
It is never too early to start investing for retirement. Retirement investment accounts usually provide tax benefits such as contributions are pretax and capital gains are taxdeferred. Your investment portfolio may consist of mutual funds and individual stocks. Your holdings, also called positions, are often presented in a tabular format like the following example. Symbol Price Quantity Value AMZN $1,626.23 10 $16,262.30 KO $48.70 100 $4,870 FXAIX $94.18 120.325 $11,332.21 Total $32,464.51 The above table shows that the current positions include 10 shares of Amazon stock (symbol AMZN), 100 shares of Coca Cola (symbol KO), and 120.325 shares of Fidelity 500 Index Fund (symbol FXAIX). The current price of each holding is also listed in the table. The Value column lists the value of each holding, derived from the price and number of shares of each holding. The total value of the account is $32,464.51. In this assignment, you are asked to write a program that outputs a table like the example. You may pick your own positions and use your favorite financial website to find their most recent prices. Your positions should have no less than 3 different security holdings. Implementation Your implementation must meet the following requirements: Hard code symbols, prices, and quantities in the program; use variables of appropriate data types to represent these values. Compute the value of each holding using code. Compute the total value of the account using code. Use printf to produce the desired output. Hint: For left alignment, use - flag. For example, %-10s specifier make string left aligned; it uses at least 10 character spaces (filling white space or taking up more spaces as needed). Use Listings 2.1 and 2.2 as example.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started