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 the meaning of ?

0 Answers  


what is a static function

10 Answers   Satyam,


what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above

3 Answers   Accenture, Infosys, Wipro,


Does c have an equivalent to pascals with statement?

0 Answers  


What is the use of f in c?

0 Answers  


how can i calculate mean,median,mode by using c program

1 Answers   HCL,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


What is the deal on sprintf_s return value?

0 Answers  


How the c program is executed?

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,


What do you mean by dynamic memory allocation in c?

0 Answers  


what are the general concepts of c and c++

2 Answers  


Categories