A stack can be implemented only using array?if not what is used?
Answer Posted / vignesh1988i
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 |
Post New Answer View All Answers
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
When c language was developed?
what is the basis for selection of arrays or pointers as data structure in a program
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Explain what are the advantages and disadvantages of a heap?
What is meant by operator precedence?
Write a program to swap two numbers without using the third variable?
What is %s and %d in c?
Why c is called a middle level language?
Tell me the use of bit field in c language?
How reliable are floating-point comparisons?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What do you mean by dynamic memory allocation in c?
what will be the output for the following main() { printf("hi" "hello"); }