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
Can you think of a way when a program crashed before reaching main? If yes how?
whitch value return void main?
What standard functions are available to manipulate strings?
What does node * mean?
How can I read in an object file and jump to locations in it?
How do you prevent buffer overflows in C?
Differentiate between calloc and malloc.
post new interiew question and aptitude test papers
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Write a program in c using only loops to print * * * * * *******
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?