Efficient data structure for store/search list of 1000 records
a)array b)double linked list c)circular queue d)hash table
Answers were Sorted based on User's Feedback
What is a Genralised LInked List?? Please give a detailed explation of it..
Write the syntax and purpose of a switch statement in C.
how to find anagram without using string functions using only loops in c programming
How can I handle floating-point exceptions gracefully?
WAP to accept first name,middle name & last name of a student display its initials?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What are extern variables in c?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
What is the argument of a function in c?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
How can I trap or ignore keyboard interrupts like control-c?
What is a Deque?