Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write a c program. 4. Each line of a text-file grades.txt contains a student ID and his grades in 5 quizzes 9001230 80.0 90.0 70.5

image text in transcribed

write a c program.

4. Each line of a text-file grades.txt contains a student ID and his grades in 5 quizzes 9001230 80.0 90.0 70.5 100.0 60.0 9001232 98.0 85.0 100.0 99.0 89.0 9001234 90.0 72.0 0.0 78.0 98.0 9001236 85.0 72.5 95.0 75.0 64.5 9001238 670 110 28.0 89.5 85.0 Given that the number of students is 5, write a C program that reads the data from grades.txt into an integer ID -array of student IDs and the corresponding quiz grades in a parallel 2D-array of type double. The program then calls the that receives the 2D array of grades and returns a 1D-array containing the average of each student. The main function finally prints an output in the format: ID 9001230 9001232 9001234 9001236 9001238 Quiz Average 80.1 94.2 67.6 78.4 56.1 Note . Your program must use appropriate loops. . Your program must be general; it must work for any text-file with the above format. . The student Averages function must not contain scanf and printf statements

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And Relational Theory Normal Forms And All That Jazz

Authors: Chris Date

1st Edition

1449328016, 978-1449328016

More Books

Students also viewed these Databases questions

Question

=+What the product does for the end-user.)

Answered: 1 week ago

Question

What is electric dipole explain with example

Answered: 1 week ago

Question

What is polarization? Describe it with examples.

Answered: 1 week ago