1. Write a C program to count the number of occurrence
of
a specific word in the given strings.
(for e.g. Find how many times the word “live” comes in the
sentence “Dream as if you’ll live forever, live as if
you’ll die today ”)
Answer Posted / taruna chaudhary
thanx ram u r exelent.
| Is This Answer Correct ? | 17 Yes | 15 No |
Post New Answer View All Answers
How do we make a global variable accessible across files? Explain the extern keyword?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
What are the data types present in c?
Explain how can I convert a number to a string?
Between macros and functions,which is better to use and why?
Do you know pointer in c?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
How are strings stored in c?
Why is %d used in c?
What does c mean in standard form?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain how do you search data in a data file using random access method?
Why is c called c not d or e?
If fflush wont work, what can I use to flush input?
Give me the code of in-order recursive and non-recursive.