Static member variable program in CPP

Today we learn about the  Static member variable program in CPP. I hope this program helps you in case if you face any type of FATAL_EROR, then don’t be hesitated, contact us immediately.

Static member variable example in C++

   #include<iostream>


using namespace std;


 class myclass

   {

     static int i;


publict: void setInt(int n)

       {

         i = n;

       }


 int getInt()


 {

         return i;

       }


 } ;


int myclass::i;       // Definition of myclass::i. i is still private to myclass.


int main()

   {


myclass object1, object2;


object1.setInt(10);


cout << “object1.i: ” << object1.getInt() << ‘\n’; // displays 10


cout << “object2.i: ” << object2.getInt() << ‘\n’; // also displays 10

     return 0;

   }

static member variable program in cpp
static member variable program in cpp

What is Static Member Function in C++

END

C program to draw a square using graphics (clickHere)

 

Note:- Maybe sometime above code doesn’t get user-friendly output, in codeblock ‘or’ any other EDITOR, All of C & C++ program tested in DOS compiler Turbo C.

Static Member Functions in C++

 

Also Read

Types of functions in C    Read Here

I hope you will understand better if you study at M.U, in the exam of M.U you know how important this “Static member variable program in CPP. So please don’t forget to give your valuable feedback. Go in the comment section and Give us some feedback about it. Static member variable program in CPP or My website.

Our team check your every Comment per day Because your one feedback helps us in growing Thesmolt

I request you if you have any doubt or question regarding our site, then please don’t hesitate. We always waiting for your Suggestion.

Note:- If you want to Download This article’s in PDF form, then simply go (Top or Bottom of) Right corner and click on the PRINT icon, and it’s saved as a PDF of  Static member variable program in CPP

For further questions, you can contact us Via mail [email protected]  otherwise, Our Help Page and Contact us Page, which is included below. I hope I’ll able to say all the possible ways to reach us. Or Download My Android Application Below Download Button.

thesmolt App

Leave a Reply

x