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
Can you please explain the scope of static variables?
Is boolean a datatype in c?
What are compound statements?
What is the use of header files?
write a program to copy the string using switch case?
What is the size of empty structure in c?
Why c is called object oriented language?
What is the use of extern in c?
With the help of using classes, write a program to add two numbers.
What is the use of bit field?
What is a function simple definition?
What is the stack in c?
Is main is user defined function?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What does %d do?