What are the phases in s/w developed life cycle?
wat is the diff b/w stack & queue...where do we use stack
Answer Posted / nisha
Stack follows LIFO i.e last in first out.The last element
entered would be removed first while Queue follows FIFO i.e
first in first out.The element that ws entered first would
be removed first.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is meant by recursion?
What is difference between structure and union in c programming?
Is c language still used?
How do you convert strings to numbers in C?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is static memory allocation? Explain
What is return in c programming?
Why should I prototype a function?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What does c mean in basketball?
What is default value of global variable in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is bubble sort in c?
What is the size of a union variable?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none