Adil Khan 7 years ago

Basic OOP Programs

Practical No 1:

 

#include

using namespace std;

class myClass{

            public:

            void memFunc(){

                        cout<<"Hello every One!";

            }

};

int main(){

             

            myClass obj;

            obj.memFunc();

            return 0;

}


Practical No 2:

 

#include

using namespace std;

class myClass{

            private:

            int age;

            public:

            void getAge(){

                        cout<<"Enter Your Age :";

                        cin>>age;

            }

            void showAge(){

                        cout<<"Your Age is "<

            }

};

int main(){

             

            myClass obj;

            obj.getAge();

            obj.showAge();

            return 0;

}


Practical No 3:

 

#include

using namespace std;

class myClass{

            private:

            int sum;

            public:

            void add(int x,int y,int z){

                        sum = x+y+z;

                        cout<<"Sum of "<

            }

            void add(int x,int y){

                        sum = x+y;

                        cout<<"Sum of "<

            }

};

int main(){

             

            myClass obj;

            obj.add(5,44);

            obj.add(5,3,5);

            return 0;

}


Practical No 4:

 

#include

using namespace std;

class myClass{

            private:

            int x;

            public:

            myClass(){

                        cout<<"Hello this is a constructor!";

                        x=3;

            }

            void memFunc(){

                        cout<<" This is a member function and x = "<

            }

};

int main(){

             

            myClass obj;

            obj.memFunc();

            return 0;

}


Practical No 5:

 

#include

using namespace std;

class myClass{

            private:

            int x;

            public:

            myClass(){

                        cout<<"Hello this is a constructor!";

                        x=3;

            }

            ~myClass(){

                        cout<<" Hello this is a destructor!";

            }

};

int main(){

             

            {

            myClass obj;

            }

            return 0;

}


Practical No 6:

 

#include

using namespace std;

class A{

            protected:

            int x;

            public:

            void setX(int a){

                        x = a;

            }

};

class B:public A{

            public:

            void getX(){

                        cout<<"x = "<

            }

};

int main(){

             

            B obj;

            obj.setX(4);

            obj.getX();

            return 0;

            }

 

Download the File Below for all Programs  Basic OOP Programs _ 0.pdf

Download: Basic OOP Programs _ 0.pdf

0
1.1K
Ground Station Design and Development for Autonomous Quadcopter

We are developing an autonomous quadcopter(drone). The quadcopter was controlled by the gr...

1675638330.png
Adil Khan
10 months ago
Design and Fabrication of Low cost air purifier

Air pollution has become one of the global health hazards in the 21st century. From the re...

1675638330.png
Adil Khan
10 months ago
Real estate recommendation system

Property buying in Pakistan is big challenge through brokers and third party peoples invol...

1675638330.png
Adil Khan
10 months ago
Wireless Power Transmission

Over all system &amp; Experimental setup was made to carry out the work. Along with the pr...

1675638330.png
Adil Khan
10 months ago
Design and Development of an Autonomous Hybrid UAV

The aim is the design, construction, development and demonstration of an Autonomous unmann...

1675638330.png
Adil Khan
10 months ago