what are the files which are automatically opened when a c
file is executed?

Answers were Sorted based on User's Feedback



what are the files which are automatically opened when a c file is executed?..

Answer / j j ramesh / ap / mca / jjcet

.exe and .obj files are open

Is This Answer Correct ?    3 Yes 0 No

what are the files which are automatically opened when a c file is executed?..

Answer / om

stdin ,stdout, stderr

Is This Answer Correct ?    3 Yes 2 No

what are the files which are automatically opened when a c file is executed?..

Answer / 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

More C Interview Questions

what are the advantages & disadvantages of unions?

2 Answers  


What is the meaning of && in c?

0 Answers  


what is the function of void main()?

8 Answers  


a C prog to swap 2 no.s without using variables just an array?

5 Answers   TCS,


what are bit fields in c?

0 Answers  






main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


what is the difference between declaration and definition of a variable or function ?

3 Answers  


what is the meaning of 'c' language

3 Answers  


what is link list?

3 Answers  


hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell

0 Answers   Reliance,


What should be keep precautions while using the recursion method?

1 Answers  


Explain what is the heap?

0 Answers  


Categories