A stack can be implemented only using array?if not what is used?
Answers were Sorted based on User's Feedback
stack is not always implemented using array's , it can also
be implemented through linked lists in DATA STRUCTURES,,,
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / bharat chandra
stack can implemented by Array(static)format and linked
lised (dynamic)formated.
| Is This Answer Correct ? | 0 Yes | 0 No |
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
What is use of pointer?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
what is c language.
can we define a function in structure?
What does stand for?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
What is stack in c?
in iso what are the common technological language?
What is 02d in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.