what are the files which are automatically opened when a c
file is executed?
Answer Posted / om
stdin ,stdout, strcpy copies the data from one string to
another...
memcpy copies the data's memory...
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Explain what are compound statements?
How can I copy just a portion of a string?
Do you know the use of 'auto' keyword?
What is the use of f in c?
What is fflush() function?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is methods in c?
What is the difference between printf and scanf )?
What is the difference between break and continue?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
what are the advantages of a macro over a function?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a code on reverse string and its complexity.
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
I heard that you have to include stdio.h before calling printf. Why?