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
How to declare pointer variables?
write a c programme for add of two numbers with out use of arthematic operators
What is the difference between #include and #include 'file' ?
Write a program for deleting duplicate elements in an array
What are void pointers in c?
When is the “void” keyword used in a function?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What is quick sort in c?
Explain what is a static function?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?