Write a c program to enter a string of paragraph and
replacing a particular word which is repeated in the
paragraph by another word?

Answer Posted / dawn

I think in 'c' it is not possible

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

1861


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

615


Can main () be called recursively?

638


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

671


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

1599






What functions are used in dynamic memory allocation in c?

602


What is the advantage of an array over individual variables?

749


What is the difference between far and near ?

697


What is the use of the function in c?

609


Write a program to generate the Fibinocci Series

673


What is "Hungarian Notation"?

646


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

3314


What are the advantages of Macro over function?

1212


Write a code of a general series where the next element is the sum of last k terms.

599


Who is the founder of c language?

695