Saved Bookmarks
| 1. |
What is the scope of extern variable? |
|
Answer» extern” keyword is used to DECLARE and define the EXTERNAL variables. Scope − They are not bound by any function. They are EVERYWHERE in the program i.e. global. Default value − Default INITIALIZED value of global variables are Zero |
|