Basic File Input and Output
Summary: The goal of this lab is to introduce basic character, and string, input and output using files.
File Utilities
Catching File Errors
-
Download, review, and compile the
program
fopen-test.cfrom the reading.- Run the program, trying to generate as many different error messages as you can.
-
Change the
fprintfcall within the(stream == NULL)test to use a call toperrorinstead. Recompile and run the program to generate the associated error. How does the output change? -
The reading advised you that the
error-reporting
fprintfwithin theargctest should not be changed to aperror. Make that change anyhow, then recompile and run the program to generate the associated error. What output do you get? Explain why that output is sensible in this context.
Counting characters, words, and lines: wc
-
Like the command line utility,
wc, write a small program calledmywc.cusinggetcto count all the characters in a file whose name is given as a command line argument. The program simply prints how many letters, spaces, newlines, and other characters there are in the file.- Your program should report human readable errors and exit if the file cannot be opened for reading. (If you use example code from the reading, be sure you cite it appropriately.)
-
In order to to test for
EOFcorrectly, the textbooks and manual pages remind us thatgetcreturns anint, not achar -
To distinguish between the end of file condition and a read
error, your program should use the function
ferroraftergetcreturnsEOF - If a read error occurred, your program should report a human-readable message and exit.
- Remember to close the file when you are done reading from it.
-
Augment your
mywc.cprogram so that it will also count and print how many words there are in the specified file.- In this program, consider a word to be any consecutive sequence of letters separated by white space. Thus, you can count a word by identifing an initial letter and then skipping through any subsequent letters until you read a whitespace character. You'd start a new word again once you read a non-space character.
-
The function
isspacefrom<ctype.h>should prove helpful.
-
Augment your
mywc.cprogram so that it will also count and print how many lines there are in the specified file.
Concatenating files: cat
-
Write a small C program called
mycat.cthat reads all the text files whose names are given on the command line and prints their contents tostdout.-
You will likely find the C library functions
fgetsandfputs(orputs) useful. Recall that, in contrast withscanf,fgetsreturnsNULLwhen it encounters the end of the file or an error. - If any file cannot be opened for reading, your program should report human readable error and continue with the next file. (If you use example code, be sure you cite it appropriately.)
- If a read error occurred, your program should report a human readable message to the standard error stream and continue with the next file.
- Remember to close each file when you are done (even if there was a read error).
-
You will likely find the C library functions
Bioinformatics
Bioinformatics solves problems in biology with the use of computer science. Here is a simple example regarding some textual data that might be used.
The file
nucleotides.txt has
genetic data
(Source:
National
Center for Biotechnology Information) from
C. elegans,
a roundworm often used as a model organism for the study of
biological systems. This file contains information about four
different genetic regions, each beginning with a tag, such
as >AB000913 1. Unfortunately, having all
these regions in the same file is not particularly helpful, and it
would be useful to divide the initial file into four smaller and
distinct files, one for each genetic region.
-
Write a C program that will take reads this file as an input and
then produce four separate files as an output.
-
The name of each file should be the the tag base plus
a
.txtextension (i.e.,AB000913.txt). -
Each of the output files should contain the tag
(i.e.,
>AB000913 1) that indicates different smaller genetic regions, and the genetic regions to which the tag corresponds.
-
The name of each file should be the the tag base plus
a
