Is there sort function in c?


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

Post New Answer

More C Interview Questions

i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


out put of printf(ā€œ%dā€,printf(ram));

5 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

3 Answers  


What is putchar() function?

0 Answers  


biggest of two no's with out using if condition statement

8 Answers  






how to connect oracle in C/C++.

3 Answers   TCS, Wipro,


What are actual arguments?

0 Answers  


Who is the founder of c language?

0 Answers  


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

0 Answers   College School Exams Tests,


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

0 Answers  


Explain what is a const pointer?

0 Answers  


Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?

1 Answers   Microsoft,


Categories