Static Variable in C++ | Static Data and Static Function | Static Variable vs Normal Variable

preview_player
Показать описание
Static Variable in C++ | Static Data and Static Function | Static Variable vs Normal Variable

🌟 Introduction to Video:
In this video, we are going to learn about static variable in c++. where we looking for how static variable works, how it is different from normal variable throw short notes and program.

📝Static Variable is the variable which retains the value in between the function call. In simple words, when we call the variable it stores the value of previous variable.

Syntax:

int function()
{
Static Datatype variable_name= value;
variable_name++;
}

---------------------------------------------------------------------------

For example:( How Static Variable different from Normal Variable )

Current Values,
📝Static Variable= 0
📝Normal Variable= 0

When we do 1st function call for both with increament by 1
In Static Variable,
Output : 1
In Normal Variable,
Output : 1

Current Values after 1st function Call,
📝Static Variable= 1
📝Normal Variable= 0

When we do 2nd function call for both with increament by 1
In Static Variable,
Output : 2
In Normal Variable,
Output : 1

Current Values after 1st function Call,
📝Static Variable= 2
📝Normal Variable= 0

---------------------------------------------------------------------------

👉Playlist For More HTML Detailed Videos:

👉Playlist For More CSS Detailed Videos:

👉Playlist For More C++ Detailed Videos:

Related Queries:
static variable
static variable and function in c++
static
static data members in c++
static variable and function
static data member in c++ tutorial
static data member in c++
static variable in c++
static variable in cpp
static variable in hindi
static variable in class c++
static variable in java
static variable and static function in c++
static member variable and function in c++
static member functions
static member function in c++
static variables
static local variable in c++
static variable c++ شرح
static and dynamic variable in c++
local global static variable in c++
static and global variable in c++
automatic vs static variables in c+ +
static variable in cpp
static variable in c++ tamil

Hashtags:
#cpp #cplusplus #staticvariable #staticfunction #cppprogramming #staticincpp #objectorientedprogramming #learncpp #codingtutorial #cppbeginners #staticvsnormal #cppconcepts #datastructures #cppvideos #programmingtips #coding #beginners #codinglevelup

License code: YWOYLBUL1RHFS12V
Рекомендации по теме
welcome to shbcf.ru