Announcements and Reminders
|
||
Review TopicsRecordingExamples ArraysWhat is an array?one variable,
multiple parts, contiguous memory
pass entire array to a function traverse an array sort, search it How to ...
How big is an array?
Initialization An array's address Example 1-9 - How is an array stored in memory?
Segmentation fault
Using a for loop
How big is an array?
Example
Passing an array as
a const
Swapping array
elements
Examples
Videos |
||
Lab Exercise #2Put your name, the compiler used, and Lab Exercise #2 in a comment at the top of your program. Email only your source code. The file below contains first and last names and the radii of circles. You'll need to cut and paste the data into a text file. Write a program to read the file and store the last names and the radii in two arrays. You'll need an array of type string and another array of some numeric type. The arrays should each hold 14 elements. Then, print out the last names and the circle areas, each in a column of width 12. Make sure you match the implied output format and that you check for a successful file open. Include a function to calculate of the circle area using the formula: Area = PI * radius * radius For PI, use a named constant equal to 3.14159265 Input data - copy to a text file and make sure there is a newline at the end of the last line in the file.
Program Output
|