What is ## preprocessor operator in c?
No Answer is Posted For this Question
Be the First to Post Answer
how could explain about job profile
how can we print hellow world programme without using semicolon
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
formula to convert 2500mmh2o into m3/hr
What is the use of clrscr?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
What is a protocol in c?
what is the function of void main()?
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.
who is the father of C Language?
20 Answers CTS, UST,
how can use subset in c program and give more example
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1