What is the Output of following program

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.4: File Streams As Function Arguments
Problem 3E
icon
Related questions
Question

C++

What is the Output of following program?

#include<iostream>

#include<fstream>

#include<string>

#include<cctype>

 using namespace std;

 int main()

{

    ifstreamifile;

    ifile.open ("text.txt");

    cout<< "Reading data from a file :-" <<endl ;

    int c = ifile.peek();

    if ( c == EOF ) return 1;

    if ( isdigit(c) )

    {

       int n;

       ifile>> n;

       cout<< "Data in the file: " << n << '\n';

    }

    else

    {

       string str;

       ifile>> str;

       cout<< "Data in the file: " << str << '\n';

    }

    ifile.close();

    return 0;

     }

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Functions
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