What do you mean by stack program?
Get me an example stack program?
Answer Posted / manoj singh
stac program is called whose as provide the lifo mens last input first output .when we putdown the value in node thats called pop and flow out the value thats called push.
char stack[10]
int top=-1;
void push(char d)
{
if(to==9)
printf("stack is full");
else
stack[++top]=d;
}
char pop()
{
if(top==-1)
return('\0')
else
return(stack[top--]);
}
//stack is create both performance pop and push.
Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Is react oop?
What are oops functions?
Is abstract thinking intelligence?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
Can bst contain duplicates?
What is encapsulation c#?
What is overloading in oops?
What is polymorphism in oops?
Please send ford technologies placement paper 2 my mail id
What is overriding in oops?
What is property in oops?
Can you explain polymorphism?
can inline function declare in private part of class?
What is static modifier?