What are static variables, and where are they stored?
Answer Posted / glibwaresoftsolutions
Static variables retain their value across multiple function calls. They are stored in the data segment of memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the different types of pointers used in c language?
Explain how do you determine whether to use a stream function or a low-level function?
What are pointers? Why are they used?
What is the difference between union and structure in c?
What is the need of structure in c?
Write a program to know whether the input number is an armstrong number.
Explain what are bus errors, memory faults, and core dumps?
Which built-in library function can be used to match a patter from the string?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How do I read the arrow keys? What about function keys?
What is the mean of function?
Where is volatile variable stored?
Explain what is the most efficient way to store flag values?
diff between exptected result and requirement?
What is the best way of making my program efficient?