shorting algorithmS


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

Post New Answer

More C Interview Questions

WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

0 Answers   Huawei,


What is the use of void pointer and null pointer in c language?

0 Answers  


1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)

12 Answers   Eskom, TCS,


what is the difference between static variable and register variable?

3 Answers  






define switch statement?

6 Answers   CTS,


HOW CAN ADD OUR FUNCTION IN LIBRARY.

5 Answers  


Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

0 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


Why is sizeof () an operator and not a function?

0 Answers  


What are qualifiers and modifiers c?

0 Answers  


What is hashing in c?

0 Answers  


Categories