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
1 11998Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
4 6671
What are 3 types of structures?
What does it mean when the linker says that _end is undefined?
Explain 'bus error'?
What is void pointers in c?
What is the difference between scanf and fscanf?
What is data types?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What does void main () mean?
What is the difference between volatile and const volatile?
What is pointers in c?
Why is sizeof () an operator and not a function?
Why main function is special give two reasons?
How many parameters should a function have?
Can you explain the four storage classes in C?