how to find the kth smallest element in the given list of
array elemnts.
Answer Posted / siva
This is a problem of Kth smallest element of QUICK SORT technique
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
With the help of using classes, write a program to add two numbers.
What is the difference between struct and union in C?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is linear search?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
How many identifiers are there in c?
What are conditional operators in C?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What are different types of variables in c?
Explain how do you determine whether to use a stream function or a low-level function?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are called c variables?
Is c is a high level language?
Can I initialize unions?