List at least 10 sorting methods indicating their average case
complexity, worst case complexity and best case complexity.


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

Post New Answer

More C Interview Questions

write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4

9 Answers   IBM, NIIT, Winit,


How many parameters should a function have?

0 Answers  


#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


difference between c and c++

3 Answers  


Do you know what are the properties of union in c?

0 Answers  






Is that possible to add pointers to each other?

0 Answers  


proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?

7 Answers   Hughes,


Write a program to generate prime factors of a given integer?

9 Answers   Microsoft,


How can you access memory located at a certain address?

0 Answers  


What is wild pointer in c?

0 Answers  


What is a char in c?

0 Answers  


Explain two-dimensional array.

0 Answers  


Categories