What is bubble sort technique in c?


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

Post New Answer

More C Interview Questions

. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.

1 Answers  


How can you find out how much memory is available?

0 Answers  


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


Explain the difference between getch() and getche() in c?

0 Answers  


Is there sort function in c?

0 Answers  






how to find anagram without using string functions using only loops in c programming

0 Answers  


Can include files be nested?

0 Answers  


What are the different types of control structures in programming?

0 Answers  


how do you redirect stdout value from a program to a file?

1 Answers  


Can a binary search tree be used as an index? If yes, how? Explain

0 Answers   TCS,


print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5

3 Answers   Winit,


1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output

2 Answers  


Categories