Input is "rama loves rajesh and rajesh Loves rama also and
rajesh wear gloves and bloves"
To print output is count the numbers of times repeted the
word love without case sensitive.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

void main() { int a=1; while(a++<=1) while(a++<=2); }

4 Answers   HCL,


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


What is the newline escape sequence?

0 Answers  


Explain low-order bytes.

0 Answers  


Write a program to print distinct words in an input along with their count in input in decreasing order of their count

0 Answers  






int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

0 Answers  


Explain what are the different data types in c?

0 Answers  


What is the correct code to have following output in c using nested for loop?

0 Answers  


Can a binary search tree be used as an index? If yes, how? Explain

0 Answers   TCS,


write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...

1 Answers   Philips,


What is the best style for code layout in c?

0 Answers  


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

0 Answers  


Categories