Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a C program to read a set of scores from a text file, count the number of scores over 80, copy the scores over
Write a C program to read a set of scores from a text file, count the number of scores over 80, copy the scores over 80 into a new file, save it as 'OUTPUTFILE.DAT', and finally, print the list of number of scores over 80 on screen. Test your program with an input file (name it as 'INPUTFILE.DAT') containing the following values: 100 50 20 82 60 30 88 78 90 100 63 55 30 85 93 96 63 A sample program execution and output is depicted in Figure 5. Start of Program **** Printing scores over 80 on screen ***** 100 82 88 90 100 85 93 96 There were 8 scores over 80. End of Program
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