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

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 7E: (File creation) Write a C++ program that creates an array containing the integer numbers 60, 40, 80,...
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage