proc() {

static i=10;
printf("%d",i);
}

If this proc() is called second time, what is the output?

Answers were Sorted based on User's Feedback



proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / sujith

I dont know how can it be 11 next time.
I agree that static variables are assigned only once, and
allocation is happening to the data segment, but it doesnt
mean that is going to change the value on its own, until u
do that manually.

U call this program for n times, the answer is going to be 10.

Is This Answer Correct ?    7 Yes 1 No

proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / suchita

the answer is 10 bcoz no increment statement in that loop. if
increment statement is there then definitely the value of
static variable is increased. otherwise it is fixed.

Is This Answer Correct ?    2 Yes 1 No

proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / vignesh1988i

if it is called for second time also ,it will be 10 only but
in a different thought....

static keyword is only one time initilization....if the
compailer when again reads the same line it blindly ignores
it and print the latest value of yhat static variable

Is This Answer Correct ?    1 Yes 0 No

proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / jeevan

There is not increment statement. In this case, always it
returs 10 only. even if 'i' is not static type, then also
it returns 10 only....... for confusing in interview, they
might have used 'static' key word here.

Is This Answer Correct ?    1 Yes 0 No

proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / krupakar

The answer is 10.

Is This Answer Correct ?    1 Yes 0 No

proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / saurabh

does static function increment the counter variable by
one?? if not then how can u say that i value will be
incremented by 1.
finally the i value will be 10 only. it will not
increment.

Is This Answer Correct ?    1 Yes 1 No

proc() { static i=10; printf("%d",i); } If this proc() is called second time, ..

Answer / guest

11

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More C Interview Questions

without using arithmatic operator convert an intger variable x into x+1

3 Answers  


mplementation of stack using any programing language

1 Answers   Marlabs,


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

0 Answers  


How many types of sorting are there in c?

0 Answers  


what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);

4 Answers   TCS,






Method Overloading exist in c ?

3 Answers   Wipro,


Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered

1 Answers  


How can I get the current date or time of day in a c program?

0 Answers  


1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?

1 Answers  


Find the highest of three numbers and print them using ascending orders?

1 Answers  


What does void main () mean?

0 Answers  


Explain the term printf() and scanf() used in c language?

0 Answers  


Categories