| 1. | Identify which of the following are declarations 1 :extern int x;2 :float square ( float x ) { ... }3 :double pow(double, double); |
|||||||
Answer: Option C Explanation: extern int x; - is an external variable declaration. |
