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
write a 'c' program to sum the number of integer values
Explain how to reverse singly link list.
Why should I use standard library functions instead of writing my own?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
Write a routine that prints out a 2-D array in spiral order!
What is difference between main and void main?
what is the disadvantage of using macros?
Is this program statement valid? INT = 10.50;
Can you please explain the difference between strcpy() and memcpy() function?
how can i sort numbers from ascending order and descending order using turbo c..
What is the difference between text files and binary files?
what is the format specifier for printing a pointer value?