How can you invoke another program from within a C program?
No Answer is Posted For this Question
Be the First to Post Answer
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
What is a pointer in c plus plus?
When is an interface "good"?
Magic square
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
what is an inline function?
Which weighs more, a gram of feathers or a gram of gold?
How does memset() work in C?
What is c++ used for today?
What are the advantages of using Unions?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
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.