What is pivot in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the time and space complexities of merge sort and when is it preferred over quick sort?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Explain how can I convert a number to a string?
Where is volatile variable stored?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
Explain what does the function toupper() do?
what is the meaning of 'c' language
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What are the types of pointers in c?
Explain threaded binary trees?
Why is void main used?