what is the benefit of c30
Answers were Sorted based on User's Feedback
why Language C is plateform dependent
What are the advantages of using Unions?
write a program to print %d ?
Can a binary search tree be used as an index? If yes, how? Explain
implement OR gate without using any bitwise operator.
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.
What is the difference between GETS();AND SCANF();
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
Write a program for finding factorial of a number.
Why preprocessor should come before source code?
what is the use of ‘auto’ keyword?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.