what are the static variables
Answers were Sorted based on User's Feedback
Answer / nil
Static vairiable is one which can be accessed without
creation of an object of Class i.e. by direct calling calss.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / prakash.m
static variables are those which retains the outcoming
value after 'n' iterations(initialized once)
(see below)
#include <stdio.h>
int g = 10;
main(){
int i =0;
void f1();
f1();
printf(" after first call \n");
f1();
printf("after second call \n");
f1();
printf("after third call \n");
}
void f1()
{
static int k=0; //static variable
int j = 10; //auto variable
printf("value of k %d j %d",k,j);
k=k+10;
}
the output will be:
value of k 0 j 10 after first call
value of k 10 j 10after second call
value of k 20 j 10after third call
hope this will help u....
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / smriti patnaik
static variables are variables that are initiated only once
in a memory,suppose u have initiated a variable as static
everytime u visit a iteration the value is changed 4m the
initialised value,not like auto variables where the values
remain same everytime u visit a iteration
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / nitin gupta
a static variable is shared by all the the instances of a
class.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / subha raman
I have a doubt..what is the difference between.."static"
and "constant(const)"??
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / guest
Variables that statically retain their memeory location
across function calls or in other words even beyond their
scope.
Global static values or functions are used to hide them
from other files in the program.
| Is This Answer Correct ? | 0 Yes | 2 No |
how to print value of e(exp1)up to required no of digits after decimal?
how to swap two nubers by using a function with pointers?
How do you sort filenames in a directory?
how to print "hai" in c?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
all c language question
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
void main() { int i=5; printf("%d",i+++++i); }
What is pointer to pointer in c with example?