what will be the output of the following program, justify?
#define TEST

int TEST getdata()
{
static i;
i+=10;
return i;

}

main()
{
int k;
k = getdata();
}


Answer Posted / rkr

The Static variable is initialized to zero
In the above program

static i; which is equivalent to static i = 0;
Next line i is incrementing by 10, then i value is 10.
return the value is 10

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do pointers store the address of value or the actual value of a variable?

804


How do we open a binary file in Read/Write mode in C?

949


Why is c still so popular?

780


i want to know the procedure of qualcomm for getting a job through offcampus

2179


What is formal argument?

856


Is it possible to initialize a variable at the time it was declared?

973


What is c token?

816


Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

842


Explain how do you generate random numbers in c?

802


Can you please explain the difference between syntax vs logical error?

896


Can static variables be declared in a header file?

803


What is meant by errors and debugging?

837


What is meant by high-order and low-order bytes?

830


write a program to find out prime number using sieve case?

1837


What is the size of a union variable?

771