Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

write a c++ program that reads a text file ant prints the no. of characters in it.

0 votes
asked Dec 3, 2018 by anonymous

2 Answers

0 votes
answered Dec 5, 2018 by anonymous
Fuck your mind
0 votes
answered Dec 5, 2018 by John Cena
#include<fstream>

#include<iostream>

using namespace std;

int main()

{

    ifstream fin("FILE_NAME.txt",ios::in);//assuming a file with name "File_NAME.txt has data already stored

    char ch;

    int c=0;

    while(fin.get(ch))

    {

        c++;

     }

     cout<<"NO of Characters: "<<c;

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...