Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is meant byStatic Variable ?

Answer Posted / rutuja gaikwad

static variable is a variable which declared inside class
using keyword static.
its value used only in that class not overall program


example:


#include <stdio.h>

void func() {
static int x = 0; // x is initialized only once
across three calls of func()
printf("%d\n", x); // outputs the value of x
x = x + 1;
}

int main(int argc, char * const argv[]) {
func(); // prints 0
func(); // prints 1
func(); // prints 2
return 0;
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can we develop a multi-tier application in Java?

1942


When will you use shell script/Perl ahead of C/C++?

1137


public static void main(String args[]) describe it

2155


What is autocall macro and how to create autocall macro? what is the use of it?

2110


What is the Difference between in memory database and physical database

2671


purpose of abstraction and interface

2051


Hi I am Rathnam, How To Remove the duplicates with out using remove duplicate stage in the datastage

1990


Definition of Singleton Class? what is the Purpose of it? what is the advantage?

2142


how do i add a column dynamically in a table by using java application?

2081


3. What is the difference between testing and Quality Assurance?

2086


Explain three modes in which files can be accessed from python program

1812


can u send some model papers how computer awareness questions are asked in goverment jobs(oriental insurance)to my mail id me.priyankapadma@rediff.com

2451


what is the difference between Windows application and Unix application?

2695


Given an array of size n. It contains numbers in the range 1 to n. Each number is present at least once except for 1 number. Find the missing number

1212


I am looking for selenium RC online Training in chennai. can any one tell me the best institute

2032