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 is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
What is a segmentation fault?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What are the different properties of variable number of arguments?
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
How to set file pointer to beginning c?
What is the difference between char array and char pointer?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Explain following declaration int *P(void); and int (*p)(char *a);
What is the significance of an algorithm to C programming?
What is the use of getch ()?