What are the files which are automatically opened when a C
file is executed?



What are the files which are automatically opened when a C file is executed?..

Answer / susie

Answer :

stdin, stdout, stderr (standard input,standard
output,standard error).

Is This Answer Correct ?    23 Yes 4 No

Post New Answer

More C Code Interview Questions

why do you use macros? Explain a situation where you had to incorporate macros in your proc report? use a simple instream data example with code ?

0 Answers  


write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"

2 Answers  


how to check whether a linked list is circular.

11 Answers   Microsoft,


Who could write how to find a prime number in dynamic array?

1 Answers  


Extend the sutherland-hodgman clipping algorithm to clip three-dimensional planes against a regular paralleiepiped

1 Answers   IBM,






write the function. if all the character in string B appear in string A, return true, otherwise return false.

11 Answers   Google,


#define max 5 #define int arr1[max] main() { typedef char arr2[max]; arr1 list={0,1,2,3,4}; arr2 name="name"; printf("%d %s",list[0],name); }

1 Answers  


Finding a number which was log of base 2

1 Answers   NetApp,


int DIM(int array[]) { return sizeof(array)/sizeof(int ); } main() { int arr[10]; printf(“The dimension of the array is %d”, DIM(arr)); }

2 Answers   CSC,


Write a program using one dimensional array to assign values and then display it on the screen. Use the formula a[i]=i*10 to assign value to an element.

1 Answers   Samar State University,


To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates.

19 Answers   Amazon, BITS, Microsoft, Syncfusion, Synergy, Vector,


main() { int i=10; i=!i>14; Printf ("i=%d",i); }

1 Answers  


Categories