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

what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


I heard that you have to include stdio.h before calling printf. Why?

0 Answers  


what is level of tree if leaf node is at level 4.please explain.

1 Answers   Wipro,


What are the 32 keywords in c?

0 Answers  






what information does the header files contain?

6 Answers   BSNL, Cisco, GDA Technologies,


what is the difference between c and c++?

7 Answers  


What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.

5 Answers   CCEM, TCS,


main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


Is it fine to write void main () or main () in c?

0 Answers  


Explain what does the function toupper() do?

0 Answers  


Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”

5 Answers   Mind Tree,


Categories