program to find which character is occured more times in a
string and how many times it has occured? for example in
the sentence "i love india" the output should be i & 3.
Answer Posted / vignesh1988i
add k++; in line 32.... sorry for mistake.
thank you
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is meant by errors and debugging?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Is boolean a datatype in c?
What is %g in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is data structure in c programming?
What are the advantages of using linked list for tree construction?
What are categories used for in c?
List the difference between a "copy constructor" and a "assignment operator"?
What are the application of void data type in c?
What are register variables in c?
What is the difference between fread buffer() and fwrite buffer()?
Why does this code crash?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.