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
What are qualifiers?
How do you define structure?
What is extern storage class in c?
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
How do I use void main?
What is graph in c?
How can I increase the allowable number of simultaneously open files?
const char * char * const What is the differnce between the above tow?.
Explain 'far' and 'near' pointers in c.
How to delete a node from linked list w/o using collectons?
What is the newline escape sequence?