Search Results

3
votes

Is there a need to close file descriptors before exit?

Closing file descriptors when you are done using them makes your code more reusable and easier to extend. This sounds to me like a case where you have a valid reason for letting them get closed au …
0
votes

Writing a while loop in the C preprocessor

Not quite what you asked, but checkout these links to a C program that is also a valid makefile and shell script. The C, make and shell code build upon each other to cr …
2
votes

Why is my implementation of wc off by one word? [solved]

You are counting \n as a word even for a blank line. …