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


Please Help Members By Posting Answers For Below Questions

Is react oop?

799


What are oops functions?

772


Is abstract thinking intelligence?

773


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

1878


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.

896


Can bst contain duplicates?

917


What is encapsulation c#?

790


What is overloading in oops?

804


What is polymorphism in oops?

723


Please send ford technologies placement paper 2 my mail id

1832


What is overriding in oops?

804


What is property in oops?

771


Can you explain polymorphism?

798


can inline function declare in private part of class?

3943


What is static modifier?

820