Difference between static global and global?
Answer Posted / ravi.g
global static variables have no file scope since they can
not be accessed from other files by using extern keyword
Global variables have the file scope since they can be
accessed from other files using extern keyword
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
Difference between a homogeneous and a heterogeneous container
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
What is scope operator in c++?
Show the application of a dynamic array with the help of an example.
What is vectorial capacity?
Is c++ a good first language to learn?
What is the meaning of c++?
What is #include c++?
Refer to a name of class or function that is defined within a namespace?
What are put and get pointers?
What is capacity in vector in c++?
What should main() return in c and c++?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
What is the use of endl in c++?