Tagged Questions
1
vote
6answers
56 views
Line counting and abberant results
I'm writing a utility to count the lines in a given file via the Unix command line. Normally this would be dead simple for me, but apparently I'm having a major off night. The goal of this program ...
0
votes
5answers
2k views
Program to read a code and count the number of lines in it,do not include comments and blank lines in count
I am trying to create a program which, given an input file, returns the count of all the lines of code in the input file, excluding blank lines and comment lines. I have written the following code, ...