Saved Bookmarks
| 1. |
A global variable is a variable (A) declared in the main ( ) function.(B) declared in any function other than the main ( ) function.(C)declared outside the body of every function.(D)declared any where in the C program. |
|
Answer» Correct option - (C)declared outside the body of every function. Explanation:- A global variable is declared outside the body of every function. |
|