A stack can be implemented only using array?if not what is used?
Answer Posted / bharat chandra
stack can implemented by Array(static)format and linked
lised (dynamic)formated.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain logical errors? Compare with syntax errors.
What does int main () mean?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is dynamic memory allocation?
What is the purpose of scanf() and printf() functions?
difference between Low, Middle, High Level languages in c ?
Can a pointer be null?
How can I change the size of the dynamically allocated array?
What is #line used for?
What are local static variables?
What is the difference between single charater constant and string constant?
What are the features of c language?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?