Explain the difference between fopen() and freopen().
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
fopen(): Opens a new file.
freopen(): Reopens a file stream to a different file or mode.
| Is This Answer Correct ? | 0 Yes | 0 No |
fopen(): Opens a new file.
freopen(): Reopens a file stream to a different file or mode.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is pre-emptive data structure and explain it with example?
write a c programme for add of two numbers with out use of arthematic operators
How do you determine the length of a string value that was stored in a variable?
using for loop sum 2 number of any 4 digit number in c language
How to declare pointer variables?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What is getch?
In c programming language, how many parameters can be passed to a function ?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
praagnovation