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
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
How are portions of a program disabled in demo versions?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Explain what are the standard predefined macros?
Explain output of printf("Hello World"-'A'+'B'); ?
How to get string length of given string in c?
What's the total generic pointer type?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Differentiate abs() function from fabs() function.
What are volatile variables?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {