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

Which built-in library function can be used to match a patter from the string?

0 Answers  


How can I copy just a portion of a string?

0 Answers  


AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?

13 Answers   HCL,


Write a program to find whether the given number is prime or not?

6 Answers  


HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE

3 Answers   Wipro,






What is line in c preprocessor?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


Is there a way to jump out of a function or functions?

0 Answers  


write a program to swap two numbers without using temporary variable?

3 Answers  


A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone

1 Answers  


consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value

4 Answers   TCS,


2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture,


Categories