proc() {
static i=10;
printf("%d",i);
}
If this proc() is called second time, what is the output?
Answer Posted / krupakar
The answer is 10.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are identifiers c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
How to get string length of given string in c?
How can you allocate arrays or structures bigger than 64K?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is a lookup table in c?
What is a MAC Address?
Tell me when would you use a pointer to a function?
What are runtime error?
Why static is used in c?
Why doesn't C support function overloading?
What is wrong with this statement? Myname = 'robin';
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is null pointer constant?
What is meant by type casting?