Program to Count Character Occurrences in a File

  • Thread starter Thread starter neo programmer
  • Start date Start date
  • Tags Tags
    File Program
AI Thread Summary
The discussion revolves around a C++ program intended to read a file and count the occurrences of each character, distinguishing between uppercase and lowercase. The initial code provided has several issues, including the use of "magic numbers" for character arrays and the filename length, which lacks clarity. Suggestions emphasize the importance of using standard practices, such as utilizing `std::string` for filenames instead of fixed-length character arrays.Critiques highlight the inefficiency of reading the file character by character using a loop that checks for EOF, which can lead to erroneous input. Instead, a more effective method is recommended: using `file_ptr.get(c)` in a while loop that directly evaluates the success of the read operation. This approach ensures that the loop terminates correctly without processing invalid data.Additionally, the discussion suggests simplifying the code and adding comments for clarity, which would benefit both the original programmer and others reviewing the code. Overall, the focus is on improving code readability and functionality while adhering to better programming practices in C++.
neo programmer
Messages
4
Reaction score
0
hi! i was writing a program which asks the user to input the file name. the program then reads the file and prints out how many times each characeter has occurred in the file(uppercase and lowercase are different). Pls help me out.
this is what i have got-i know this is not correct.

#include<iostream>
#include<fstream>
#include<stdlib.h>

using namespace std;

int main()
{
fstream file_ptr;
char filename[81];
int a = 65;
int e=0;
char number[58]={0};
for(int i=0; i<58; i++)
{
number=a;
a++;
}
// Get name of file
cout << "Enter filename : ";
cin.getline(filename,81);
// Open data file for READING
cout << "Opening file "<< filename << endl;
file_ptr.open(filename, ios::in);
if (!file_ptr.good())
{
//The file could not be opened
cout << "ERROR - file " << filename << " could not be opened";
exit(1);
}
// READ data from file until the end-of-file (EOF) is reached.

do {
file_ptr >> number;
cout << "Read " << number << " from file." << endl;
} while(file_ptr.peek()!=EOF);
// Close file
cout << "Closing file " << filename << endl;
file_ptr.close();
system("pause");
return 0;
}
 
Technology news on Phys.org
Code:
char filename[81];
Why 81? What's 81 char big? Don't use http://www.parashift.com/c++-faq-lite/newbie.html".

Code:
int a = 65;
Why 65? What's 65? Don't use magic number. You don't need to tell the program what it's internal representation is in numerically for characters. Use char's and it'll work it out itself.

Code:
int e=0;
What's e? Where have you used it?

Code:
char number[58]={0};
Why 58? What's 58? Don't use magic number.

Code:
for(int i=0; i<58; i++)
{
number[i]=a;
a++;
}
Don't need that.

Code:
cin.getline(filename,81);
Use std::string, and not some random arbitrary length for the filename.

Code:
do {
file_ptr >> number;
cout << "Read " << number << " from file." << endl;
} while(file_ptr.peek()!=EOF);
>> reads in from the first non-whitespace character until the next non-whitespace character. number confusing though you've made it, is char array of 58 char's long. You're wanting to read in each character one at a time, and count it. Why are you reading in phase at a time?
 
Last edited by a moderator:
hmm, man, I hate C++. C++ is way too overloaded (it's a joke). Try placing comments or exlanations on each part of your code, so you, yourself, and others know what a section does. Look at all those questions by KTC. Try simplifying your code, or remove code that isn't really needed. And I believe, C++ has helper functions for getting on a character by character basis. Anyway, I'll check again and post here another time.
 
this is something different which i wrote

#include<iostream>
#include<fstream>
#include<stdlib.h>

using namespace std;

int main()
{
fstream file_ptr;
char filename[81];
// Get name of file
cout << "Enter the filename (make sure that the test file and the program is in the same directory): ";
cin.getline(filename,81);
// Open data file for READING
cout << "Opening file "<< filename << endl;
file_ptr.open(filename, ios::in);
if (!file_ptr.good())
{
//The file could not be opened
cout << "ERROR - file " << filename << " could not be opened";
exit(1);
}
int a = 65;
char number[58]={0};
for(int i=0; i<58; i++)
{
number=a;
a++;
}
int x[58]={0};
char c;
// READ data from file until the end-of-file (EOF) is reached.
while(file_ptr.eof()==0)
{
file_ptr.get(c); //reading character
for(int i=0; i<58; i++)
{
if(number==c)
{
x=x+1;
break;
}
}
}
for(int i=0; i<58; i++)
{
cout<<number<<"="<<x<<endl;
}

// Close file
cout << "Closing file " << filename << endl;
file_ptr.close();
system("pause");
return 0;
}
 
i took 65 because 65 is ASCII equivalent of 'a'. as i wnt to get all the alphabets(both uppercase and lowercase) so i used size of d array as 58.
65 + 58 =123 which is ASCII equivalent of 'Z'.

i still don't know how to correct the filename part in d code.
 
When reading files using a "while" loop in C++, it is almost never a good idea to use the eof() member function or the predefined EOF symbol, because it gives you "true" only after the program has tried to read past the end of file and failed. Therefore the loop makes one more cycle after the last real data item, giving you some garbage input.

In your case, the usual way to read one character at a time is:

Code:
while (file_ptr.get(c))
{
    // do your stuff with c here
}

When you use any of the standard C++ input operations in a boolean context, it evaluates as "true" or "false" depending on whether the operation succeeded or not, in addition to actually performing the input operation. Therefore, when file_ptr.get() tries to read past the last character in the file, it fails, and the loop terminates immediately without trying to do anything with the garbage that is now in c.

The appropriate way to use eof() is to test whether the loop ended because of end of file or some other kind of input error:

Code:
while (file_ptr.get(c))
{
    // do your stuff with c here
}

if (file_ptr.eof())
    cout << "End of file reached normally." << endl;
else
    cout << "There was an input error." << endl;
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top