Suppose you have just opened the file test.txt and the following variables have been declared. char name[31]; int score; File test.txt consists of the following content: Mary 89 Mike 75 John 84 What statement will read the name and score in a line from the file? fscanf(pFile, "%s %d", name, &score); fscanf(pFile, "%s %d", &name, &score); fscanf(pFile, "%d %d", &n ne, &score); fscanf(pFile, "%d %d", name, &score);

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section8.3: Random File Access
Problem 6E
icon
Related questions
Question
Suppose you have just opened the file test.txt and the following variables have been declared.
char name[31];
int score;
File test.txt consists of the following content:
Mary 89
Mike 75
John 84
What statement will read the name and score in a line from the file?
fscanf(pFile, "%s %d", name, &score);
fscanf(pFile, "%s %d", &name, &score);
fscanf(pFile, "%d %d", &name, &score);
fscanf(pFile, "%d %d", name, &score);
Transcribed Image Text:Suppose you have just opened the file test.txt and the following variables have been declared. char name[31]; int score; File test.txt consists of the following content: Mary 89 Mike 75 John 84 What statement will read the name and score in a line from the file? fscanf(pFile, "%s %d", name, &score); fscanf(pFile, "%s %d", &name, &score); fscanf(pFile, "%d %d", &name, &score); fscanf(pFile, "%d %d", name, &score);
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
File Input and Output Operations
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