What is the difference between static global and global ?
Answer Posted / leossk
Scope of the static variable is limited to that file, while
global is for all the files in that project space.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How do I tokenize a string in c++?
Do you know about C++ 11 standard?
Explain the difference between new() and malloc() in c++?
How do you flush std cout?
What is a template in c++?
Explain differences between new() and delete()?
How do you clear a map in c++?
What is the fastest c++ compiler?
Can char be a number c++?
What is heap sort in c++?
what is Loop function? What are different types of Loops?
What is c++ good for?
Explain register storage specifier.
What is searching? Explain linear and binary search.
Write a short code using c++ to print out all odd number from 1 to 100 using a for loop