Write a program to print distinct words in an input
along with their count in input in decreasing order of
their count
No Answer is Posted For this Question
Be the First to Post Answer
What is function and its example?
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..
How will you delete a node in DLL?
What is the use of ?: Operator?
What is const volatile variable in c?
What are the advantages of c preprocessor?
Write a code of a general series where the next element is the sum of last k terms.
what is the difference between %d and %*d in c languaga?
Why should I use standard library functions instead of writing my own?
Taking an example,differentiate b/w loader and linker ?
What is a pointer in c?