Write a C Program to display the following menu:
Menu
1. Display
2. Copy
3. Append
4. Exit
Accept the choice (1-4) from the user, and perform the
following tasks:
Choice 1: Accept a file name from the user and display the
file on screen
Choice 2: Accept two file names, and copy first file to the
second
Choice 3: Accept two file names, and append second file to
the first file
Choice 4: Terminate the program
If errno contains a nonzero number, is there an error?
why program counter is 16 bit?
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Describe the header file and its usage in c programming?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is the use of c language in real life?
What is sorting in c plus plus?
What are identifiers c?
how to make program without <> in libray.
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}