|
Related Questions |
View Answer |
|
Write a C program that will convert Simple Sentence to Complex/Compound Sentence.
|
View Answer
|
|
Can anyone share his code which would accept a sentence, then count the number occurrence of the words excluding spaces.All is done using linked list.
|
View Answer
|
|
using c-strings write a program that will analyse the text"1.1my brother is taller than me.1.2 I am a boy of sixteen years old". The program should remove multiple spaces betweem words,find the longest word in the text,search and identify the number of letters"e", extact the number of integers , extract the number of doubles, extract the number of words in each sentence and identify the number of sentences in the text.
|
View Answer
|
|
Q.8 When a 'C' function call is made, the order in which parameters passed to the function are pushed into the stack is (a) left to right (b) right to left (c) bigger variables are moved first than the smaller variables. (d) smaller variables are moved first than the bigger ones (c) none of the above.
|
View Answer
|
|
void main() { float a= 0.7; if (a < 0.7) printf("c"); else printf("c++"); } Output of the above program is c. Why? Whereas the same program with 0.8 instead of 0.7 gives c++ as the output? Why explain?
|
else printf("c++") - C Interview Questions & Answers">
View Answer
|
|
What is difference between the test effort and the test procedure?
|
View Answer
|
|
How to write a program for pascal triangle?
|
View Answer
|
|
Write a program to remove comment lines and blank lines from an error free c program.
|
View Answer
|
|
Where is the prototype of the main function i.e how the execution startd from main function and how to find out the size of a function.
|
View Answer
|