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 |
why programming language C is still used in operating system's kernel??
What is difference between union All statement and Union?
Why is #define used?
code for bubble sort?
What will happen when freeing memory twice
What language is lisp written in?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What do you mean by invalid pointer arithmetic?
What is unsigned int in c?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
what is c language?
Are local variables initialized to zero by default in c?