what are the files which are automatically opened when a c
file is executed?
Answer Posted / om
stdin ,stdout, stderr
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Is array a primitive data type in c?
What are global variables and how do you declare them?
What is structure packing in c?
What are the characteristics of arrays in c?
What is bash c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Is there a built-in function in C that can be used for sorting data?
What is the heap in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What does static variable mean in c?
Explain the difference between exit() and _exit() function?
How do we open a binary file in Read/Write mode in C?
Why c is called a middle level language?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What are structural members?