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
What is a ternary operator in c?
What do you mean by scope of a variable in c?
#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); }
What is the purpose of macro in C language?
Why flag is used in c?
Write a c program to demonstrate character and string constants?
Why is this loop always executing once?
What is a structure and why it is used?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
difference between object file and executable file
What are the advantages of the functions?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain what are compound statements?
Explain the process of converting a Tree into a Binary Tree.
How to set file pointer to beginning c?