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
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
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
What are different types of pointers?
How will you delete a node in DLL?
write a 'c' program to sum the number of integer values
What are the different categories of functions in c?
Does free set pointer to null?
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...
Differentiate between functions getch() and getche().
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
What is the difference between fread and fwrite function?