Is there sort function in c?
Answer / Krishnapal Singh
"Yes, C has a built-in sort function called qsort(). It is a part of the standard library and can be used to sort arrays."
| Is This Answer Correct ? | 0 Yes | 0 No |
how could explain about job profile
Explain how do you print an address?
without using arithmatic operator solve which number is greater??????????
Write a program in c to input a 5 digit number and print it in words.
What are control structures? What are the different types?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
How do I convert a string to all upper or lower case?
different between overloading and overriding
What is sizeof array in c?
To what value do nonglobal variables default? 1) auto 2) register 3) static
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above