what is the different between if-else and switch statment
(other than syntax)
Answer Posted / srinivasa reddy
Internally IF-ELSE implements Linear search, where as
SWITCH implements Binary search.
| Is This Answer Correct ? | 35 Yes | 51 No |
Post New Answer View All Answers
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
can any one provide me the notes of data structure for ignou cs-62 paper
Explain the difference between call by value and call by reference in c language?
Which one would you prefer - a macro or a function?
What is the total generic pointer type?
What is void c?
Explain 'far' and 'near' pointers in c.
How can I ensure that integer arithmetic doesnt overflow?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is a good data structure to use for storing lines of text?
What is c language and why we use it?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is conio h in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers