void countwords()
{
ifstream fin;
fin.open("out.txt");
char word[30];
int count=0;
while(!fin.eof())
{
fin>>word;
count++;
}
cout<<"Number of words in file are "<<count;
fin.close();
}
Archive for the ‘Programming’ Category
Write a function to count number of words in a text file named “OUT.TXT”
February 16th, 2013, posted in C++Write a function to count number of words in a text file named "OUT.TXT"
February 16th, 2013, posted in C++Write a C++ program to write number 1 to 100 in a data file NOTES.TXT
February 12th, 2013, posted in C++Infix To Postfix or Postfix To Infix
February 11th, 2013, posted in ProgrammingThis is a very cool link to convert Infix To Postfix or Postfix To Infix.
And the best thing is that you can convert it online :
Link : http://scriptasylum.com/tutorials/infix_postfix/infix_postfix.html
