Difference between static global and global?
Answer Posted / rakesh
Static global has file scope and it can't be accessed
outside of the file.
while global has program scope and can be accessed
outside of file in which it has been defined using extern
keyword.
| Is This Answer Correct ? | 139 Yes | 7 No |
Post New Answer View All Answers
List the merits and demerits of declaring a nested class in C++?
Explain deep copy and a shallow copy?
What is a literal in c++?
Can you be bale to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
What apps are written in c++?
What is an adjust field format flag?
What is a unnitialised pointer?
Write about c++ storage classes?
Give 10 points of differences between C & C++.
What are the uses of pointers?
What do you mean by a template?
What is a multimap c++?
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
Explain what is oop?
What is exception handling? Does c++ support exception handling?