Explain what is the advantage of a random access file?


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

Post New Answer

More C Interview Questions

Difference between data structure and data base.

7 Answers   CTS, Value Labs, Zoho,


How can I do serial ("comm") port I/O?

0 Answers   Celstream,


What is #line in c?

0 Answers  


#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}

3 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  






What is the use of ?

0 Answers  


In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }

1 Answers  


what is the difference between c and c++?

7 Answers  


application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above

0 Answers  


What is #error and use of it?

0 Answers  


Where is c used?

0 Answers  


Can a file other than a .h file be included with #include?

0 Answers   Aspire, Infogain,


Categories