Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You may not use fopen ( ) , fgets ( ) . Using onlinegdb.com, make sure to implent txt files named file 1 . txt

You may not use fopen(), fgets().
Using onlinegdb.com, make sure to implent txt files named file1.txt, file2.txt, file3.txt
What to do?
Write a C program mycat whose behavior resembles that of the system command cat. Unlike the
standard cat, mycat will not work with the standard input. mycat must accept the following
parameters:
mycat must receive at least one parameter, file1, whose content will be printed on the screen. If more
than one file name is specified, the contents of all of the files will be printed.
mycat must accept any combination of the following switches:
-b Number the non-blank output lines, starting at 1.
-e Display a dollar sign (' $ ') at the end of each line.
-n Number the output lines, starting at 1.
-s Squeeze (remove) all empty lines, causing the output to be single spaced. An empty line can
contain one or more whitespace characters (e.g. space, tab, newline, carriage return).
You may not use fopen () and fgets () to read the data from input files.
Line numbering must not be restarted at the beginning f every file.
When both -b and -n are specified, only line number should be printed.
Test mycat using the following text files: file1.txt, file2.txt, and file3.txt. Use the following test cases:
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Readings In Database Systems

Authors: Michael Stonebraker

2nd Edition

0934613656, 9780934613651

More Books

Students also viewed these Databases questions

Question

What can the auditor learn from a vertical analysis?

Answered: 1 week ago