Click here to Skip to main content
15,896,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionprogram in oop in c++ Pin
KARFER17-May-07 9:27
KARFER17-May-07 9:27 
AnswerRe: program in oop in c++ Pin
Hamid_RT17-May-07 9:32
Hamid_RT17-May-07 9:32 
AnswerRe: program in oop in c++ Pin
Joan M17-May-07 10:11
professionalJoan M17-May-07 10:11 
Generalstack overflow Pin
xyecloudy17-May-07 14:51
xyecloudy17-May-07 14:51 
GeneralRe: stack overflow Pin
Hamid_RT17-May-07 19:45
Hamid_RT17-May-07 19:45 
GeneralRe: stack overflow Pin
xyecloudy18-May-07 1:18
xyecloudy18-May-07 1:18 
GeneralRe: stack overflow Pin
Hamid_RT18-May-07 1:37
Hamid_RT18-May-07 1:37 
AnswerRe: stack overflow Pin
KARFER18-May-07 2:55
KARFER18-May-07 2:55 
//this is add to stack function
<br />
void push (int x)<br />
{<br />
   if (top >size -1)      //size is the max size of stack<br />
       cout <<"Stack is full";<br />
   else<br />
<br />
   stack[top++]=x;       //top is the pointer for the stack<br />
}<br />
<br />
//this is delete from stack function<br />
int pop ()<br />
{<br />
    if (top >0)<br />
        return stack[top--];<br />
    else<br />
        cout <<"stack is empty";<br />
}<br />


O.K ...
Go Head ...

Wink | ;)

To Be Or Not To Be
(KARFER)

AnswerRe: program in oop in c++ Pin
David Crow17-May-07 10:20
David Crow17-May-07 10:20 
AnswerRe: program in oop in c++ Pin
Rick York17-May-07 10:21
mveRick York17-May-07 10:21 
GeneralRe: program in oop in c++ Pin
Rajesh R Subramanian17-May-07 19:23
professionalRajesh R Subramanian17-May-07 19:23 
QuestionProblem on dialog creation Pin
jpyp17-May-07 9:00
jpyp17-May-07 9:00 
AnswerRe: Proble on dialog creation Pin
Mark Salsbery17-May-07 9:10
Mark Salsbery17-May-07 9:10 
GeneralRe: Proble on dialog creation Pin
jpyp17-May-07 11:07
jpyp17-May-07 11:07 
GeneralRe: Proble on dialog creation Pin
Mark Salsbery17-May-07 11:51
Mark Salsbery17-May-07 11:51 
AnswerRe: Problem on dialog creation Pin
jpyp17-May-07 12:23
jpyp17-May-07 12:23 
GeneralRe: Problem on dialog creation Pin
Mark Salsbery17-May-07 12:35
Mark Salsbery17-May-07 12:35 
GeneralRe: Problem on dialog creation Pin
jpyp18-May-07 8:04
jpyp18-May-07 8:04 
GeneralRe: Problem on dialog creation Pin
Mark Salsbery18-May-07 8:19
Mark Salsbery18-May-07 8:19 
GeneralRe: Problem on dialog creation Pin
jpyp18-May-07 9:20
jpyp18-May-07 9:20 
GeneralRe: Problem on dialog creation Pin
Mark Salsbery18-May-07 9:45
Mark Salsbery18-May-07 9:45 
QuestionRe: Problem on dialog creation Pin
David Crow18-May-07 9:51
David Crow18-May-07 9:51 
GeneralRe: Problem on dialog creation Pin
jpyp22-May-07 7:38
jpyp22-May-07 7:38 
AnswerRe: Proble on dialog creation Pin
David Crow17-May-07 10:24
David Crow17-May-07 10:24 
GeneralRe: Problem on dialog creation Pin
jpyp17-May-07 11:11
jpyp17-May-07 11:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.