code for quick sort?


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

Post New Answer

More C Interview Questions

Is there a way to jump out of a function or functions?

0 Answers  


FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?

4 Answers   Wipro,


#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }

2 Answers  


Write a program in c to print 1 121 12321 1234321 123454321

11 Answers   ANR, College School Exams Tests, Mu Sigma, Wipro,


What is the benefit of using an enum rather than a #define constant?

0 Answers  






What are the advantages of Macro over function?

1 Answers  


what is void pointer?

1 Answers   Wipro,


How would you rename a function in C?

0 Answers   Tech Mahindra,


main() {int a=200*200/100; printf("%d",a); }

14 Answers   TCS,


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

0 Answers   Lovely Professional University,


How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?

1 Answers  


What are the different types of control structures in programming?

0 Answers  


Categories