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
Explain low-order bytes.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is difference between function overloading and operator overloading?
How the c program is executed?
What is the purpose of void pointer?
How do we print only part of a string in c?
What is derived datatype in c?
Write a C program to count the number of email on text
Write a program to swap two numbers without using third variable in c?
What is typeof in c?
What is a pointer and how it is initialized?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Why doesnt this code work?
Differentiate between declaring a variable and defining a variable?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }