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

Answers were Sorted based on User's Feedback



Write a c program to enter a string of paragraph and replacing a particular word which is repeated..

Answer / dawn

I think in 'c' it is not possible

Is This Answer Correct ?    5 Yes 4 No

Write a c program to enter a string of paragraph and replacing a particular word which is repeated..

Answer / dprusty6

plz give me the answer

Is This Answer Correct ?    4 Yes 7 No

Post New Answer

More C Interview Questions

Why dont c comments nest?

0 Answers  


what is op? for(c=0;c=1000;c++) printf("%c",c);

21 Answers   Trigent,


What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }

8 Answers   ADITI, Adobe,


What is the use of in c?

0 Answers  


I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....

2 Answers  


What is a wrapper function in c?

0 Answers  


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

0 Answers  


How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  


What is the c language function prototype?

0 Answers  


What is wild pointer in c?

0 Answers  


List a few unconditional control statement in c.

0 Answers  


When is a “switch” statement preferable over an “if” statement?

0 Answers  


Categories