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
Do pointers store the address of value or the actual value of a variable?
How do we open a binary file in Read/Write mode in C?
Why is c still so popular?
i want to know the procedure of qualcomm for getting a job through offcampus
What is formal argument?
Is it possible to initialize a variable at the time it was declared?
What is c token?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain how do you generate random numbers in c?
Can you please explain the difference between syntax vs logical error?
Can static variables be declared in a header file?
What is meant by errors and debugging?
What is meant by high-order and low-order bytes?
write a program to find out prime number using sieve case?
What is the size of a union variable?