Explain how do you search data in a data file using random access method?


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

Post New Answer

More C Interview Questions

Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


What are the various types of control structures in programming?

0 Answers  


What are preprocessor directives?

0 Answers  


What is c definition?

0 Answers  


Why doesn't C have nested functions?

2 Answers  






what r callback function?

1 Answers  


What is a void pointer? When is a void pointer used?

0 Answers   Aspire, Infogain,


what is ans for this scanf(%%d",c);

1 Answers  


What is #define used for in c?

0 Answers  


how to set Nth bit of a variable?

1 Answers  


What are the types of type specifiers?

0 Answers  


Are pointers integer?

0 Answers  


Categories