disply the following menu
1.Disply
2.Copy
3.Append;
as per the menu do the file operations
4.Exit


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }

10 Answers   TCS, Vector,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }

11 Answers   CISOC, CitiGroup, College School Exams Tests,


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


What are different types of pointers?

0 Answers  


How will you delete a node in DLL?

0 Answers   GrapeCity,






write a 'c' program to sum the number of integer values

8 Answers  


What are the different categories of functions in c?

0 Answers  


Does free set pointer to null?

0 Answers  


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

0 Answers  


Differentiate between functions getch() and getche().

0 Answers  


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


What is the difference between fread and fwrite function?

0 Answers  


Categories