Answers for "static int"

C++
0

what does static int do?

#include <iostream>
using namespace std;

void fun()
{
  static int i = 10;		//static makes it global throughout the program
  i++;
  cout << i;
}

int main()
{
  fun();
  fun();
  fun();
  return 0;
}

ans: 111213
Posted by: Guest on November-02-2020
3

what is static variable

The static variable is used to refer to the common property of all objects 
(that is not unique for each object), 
e.g., The company name of employees, college name of students, etc. 
Static variable gets memory only once in the class area at the time of 
class loading. Using a static variable makes your program more 
memory efficient (it saves memory). Static variable belongs to the class 
rather than the object.
Posted by: Guest on November-28-2020

Code answers related to "static int"

Browse Popular Code Answers by Language