code for quick sort?


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

Post New Answer

More C Interview Questions

What is structure pointer in c?

0 Answers  


What is the ANSI C Standard?

0 Answers   Celstream,


Which is the best sort method for library management?

1 Answers   Microsoft,


Explain b+ tree?

0 Answers  


pierrot's divisor program using c or c++ code

0 Answers  






What are the application of c?

0 Answers  


What is function and its example?

0 Answers  


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

0 Answers  


Why flag is used in c?

0 Answers  


What are dangling pointers? How are dangling pointers different from memory leaks?

1 Answers  


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................

8 Answers  


Categories