InterviewSolution
Saved Bookmarks
| 1. |
What is the meaning of using extern before function declaration?For example following function sum is made externextern int sum(int x, int y, int z){ return (x + y + z);}(A) Function is made globally available(B) extern means nothing, sum() is same without extern keyword.(C) Function need not to be declared before its use(D) Function is made local to the file. |
| Answer» | |