What do you mean by recursion in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is queue in c?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
how to make a scientific calculater ?
Why should I prototype a function?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
How can I open files mentioned on the command line, and parse option flags?
Explain bit masking in c?
What is void main () in c?
How can you be sure that a program follows the ANSI C standard?
Program to find the sum of digits of a given number until the sum becomes a single digit
what about "char *(*(*a[])())();"
which types of data structure will i use to convert infix to post fix???