MCQOPTIONS
Saved Bookmarks
| 1. |
Can variable p be accessed by functions in another source file?#include <stdio.h> int p; int main() { printf("%d n", p); } |
| A. | No |
| B. | Yes |
| C. | Depends on the type of the variable |
| D. | Only if static keyword is used |
| E. | None of these |
| Answer» C. Depends on the type of the variable | |