Question: C Programming Choose the correct statement about the following declarations. extern int func1() {return 1}; int func2() {return 2}; A. extern will make func1 global;
C Programming

Choose the correct statement about the following declarations. extern int func1() \{return 1\}; int func2() \{return 2}; A. extern will make func1 global; func2 will be only visible to the current source file scope B. fun1 and func2 will be globally visible because by default all functions in C are extern and global
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
