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
Why header files are used?
a simple program in c language
How to avoid buffer overflow?
Write a program to show the workingof auto variable.
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..
What is use of pointer?
Write a program of advanced Fibonacci series.
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Is an array parameter is always "by reference" ?
How is a structure member accessed?
Tell me what is the purpose of 'register' keyword in c language?