program in oop in c++
-
please ..source code for program in oop in c++ i can't write program in c++ in oop please i want to be expert in oop LORAN
To Be Or Not To Be (KARFER)
-
please ..source code for program in oop in c++ i can't write program in c++ in oop please i want to be expert in oop LORAN
To Be Or Not To Be (KARFER)
You should search the definition for the "class" word, once you've read that you'll understand what is the oop about... Then making that code will be easy (at the beggining) of course you can make it as hard as you want, but for example, look for the CButton source code or any other control in the MFC, and then you'll understand. Hope this helps.
-
please ..source code for program in oop in c++ i can't write program in c++ in oop please i want to be expert in oop LORAN
To Be Or Not To Be (KARFER)
loran1986 wrote:
please ..source code for program in oop in c++
#include
int main()
{
std::cout << "I've a long way to go...\n";
}
"A good athlete is the result of a good and worthy opponent." - David Crow
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
please ..source code for program in oop in c++ i can't write program in c++ in oop please i want to be expert in oop LORAN
To Be Or Not To Be (KARFER)
-
You should search the definition for the "class" word, once you've read that you'll understand what is the oop about... Then making that code will be easy (at the beggining) of course you can make it as hard as you want, but for example, look for the CButton source code or any other control in the MFC, and then you'll understand. Hope this helps.
-
Try a google search for object oriented scribble. Read through that code and you'll be an expert in no time. :cool:
Rick York wrote:
Try a google search for object oriented scribble. Read through that code and you'll be an expert in no time.
:laugh: Some testimonials of satisfied users of your suggestion: 1. I went through the code for a couple of minutes and now I am very confident. I am currently re-writing Linux - Mr. XYZ 2. Scribble code is the best. I wrote a mail server, right after going through the code. - Mr. ABCD 3. I wrote an ERP package for our company in C++, immediately after having a look at scribble code. - Mr. GHIJ
Nobody can give you wiser advice than yourself. - Cicero
-
-
-
I hope it solved your problem.:)
WhiteSky
-
//this is add to stack function
void push (int x) { if (top >size -1) //size is the max size of stack cout <<"Stack is full"; else stack[top++]=x; //top is the pointer for the stack } //this is delete from stack function int pop () { if (top >0) return stack[top--]; else cout <<"stack is empty"; }
O.K ... Go Head ... ;)To Be Or Not To Be (KARFER)