When a c file is executed there are many files that are automatically opened what are they files?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why & is used in c?

0 Answers  


can v write main() { main(); } Is it true?

6 Answers  


Explain how can I manipulate strings of multibyte characters?

0 Answers  


Why doesnt the call scanf work?

0 Answers  


What is the size of structure pointer in c?

0 Answers  






typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


What is meant by type specifiers?

0 Answers  


Why is not a pointer null after calling free?

0 Answers  


What is meant by keywords in c?

0 Answers  


How can you access memory located at a certain address?

0 Answers  


what is the difference between class and unio?

0 Answers   HCL, Wipro,


Explain demand paging.

1 Answers   Agilent,


Categories