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
Why dont c comments nest?
what is op? for(c=0;c=1000;c++) printf("%c",c);
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(); }
What is the use of in c?
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....
What is a wrapper function in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
What is the c language function prototype?
What is wild pointer in c?
List a few unconditional control statement in c.
When is a “switch” statement preferable over an “if” statement?