I fileio01.cpp #include #include 4 5日{ int main()) FILE *fptrI, *fptrC; fptrI = fopen ("datafile.dat","r"); fptr0 = fopen("outfile.out","w"); 10 11 12 13 14 15 float MARK1, MARK2, MARK3, AVG; int COUNTER = 0; fprintf(fptrC, "MARK1\TMARK2\TMARK3\TAVERAGE"); fprintf(fptrC, "\n- "); 16 while (COUNTER < 6) 17 B 18 fscanf(fptrI, "%f%f%f", &MARK1, &MARK2, &MARK3); 19 20 AVG = (MARK1 + MARK2 + MARK3) / 3.0; 21 22 23 fprintf(fptrC, "\n%.2f\t%.2f\t%.2f\t%.2f", MARK1, MARK2, MARK3, AVG); COUNTER = COUNTER + 1; 24 25 26 27 fclose (fptrI); fclose (fptrC); return e; 28 29 30 31

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter3: Data Representation
Section: Chapter Questions
Problem 12VE
icon
Related questions
Question

Rewrite the program with a little bit of changes in the codes

 
[*] fileio01.cpp
#include <stdio.h>
#include <conio.h>
4
int main()
FILE *fptrI, *fptrC;
fptrI = fopen ("datafile.dat","r");
fptr0 = fopen ("outfile.out","w");
6.
10
float MARK1, MARK2, MARK3, AVG;
int COUNTER = 8;
11
12
fprintf(fptrC, "MARK1\TMARK2\TMARK3\TAVERAGE");
fprintf(fptrc, "\n--
13
14
-");
15
while (COUNTER < 6)
{
16
17 A
18
19
fscanf(fptrI, "%f%f%f", &MARK1, &MARK2, &MARK3);
20
AVG =
(MARK1 +
MARK2 + MARK3) / 3.0;
21
22
23
fprintf(fptrC, "\n%.2f\t%.2f\t%.2f\t%.2f", MARK1, MARK2, MARK3, AVG);
COUNTER = COUNTER + 1;
24
25
26
27
28
29
fclose (fptrI);
fclose (fptrC);
return e;
30
31
32
Transcribed Image Text:[*] fileio01.cpp #include <stdio.h> #include <conio.h> 4 int main() FILE *fptrI, *fptrC; fptrI = fopen ("datafile.dat","r"); fptr0 = fopen ("outfile.out","w"); 6. 10 float MARK1, MARK2, MARK3, AVG; int COUNTER = 8; 11 12 fprintf(fptrC, "MARK1\TMARK2\TMARK3\TAVERAGE"); fprintf(fptrc, "\n-- 13 14 -"); 15 while (COUNTER < 6) { 16 17 A 18 19 fscanf(fptrI, "%f%f%f", &MARK1, &MARK2, &MARK3); 20 AVG = (MARK1 + MARK2 + MARK3) / 3.0; 21 22 23 fprintf(fptrC, "\n%.2f\t%.2f\t%.2f\t%.2f", MARK1, MARK2, MARK3, AVG); COUNTER = COUNTER + 1; 24 25 26 27 28 29 fclose (fptrI); fclose (fptrC); return e; 30 31 32
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr