Difference between static global and global?
Answer Posted / derick
Chitra, "static global is fixed.but global variables are
changed." what does this mean?
Please do not answer like this if you are not sure.
What Rakesh said is true except that Static global
variable's scope is limited to its block.
| Is This Answer Correct ? | 21 Yes | 10 No |
Post New Answer View All Answers
Can I learn c++ without knowing c?
What is the best c++ compiler?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is namespace & why it is used in c++?
Can you write a function similar to printf()?
What are the rules for naming an identifier?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
Explain the difference between using macro and inline functions?
What is a unnitialised pointer?
What does asterisk mean in c++?
Write syntax to define friend functions in C++.
write a function signature with various number of parameters.
When do you call copy constructors?
What is meant by a delegate?
Are c and c++ similar?