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 |
Tell me with an example the self-referential structure?
How arrays can be passed to a user defined function
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Is it possible to have a function as a parameter in another function?
what is difference between procedural language and functional language ?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
what is the most appropriate way to write a multi-statement macro?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What is self-referential structure in c programming?
What is array of structure in c programming?
What is structure in c language?