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 |
totally how much header files r in c language
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
to find the closest pair
What does struct node * mean?
how to implement stack operation using singly linked list
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
What is a pointer on a pointer in c programming language?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
What does & mean in scanf?
What are the disadvantages of c language?
What is the difference between void main and main in c?