InterviewSolution
Saved Bookmarks
| 1. |
The option necessary to compile a C program havin math functions is ______________(a) -lm(b) -ln(c) -lp(d) -lq |
|
Answer» The correct choice is (a) -lm Explanation: To compile a program written in the C language, it is compiled by issuing the option ‘-lm’. The examples of some math functions found in ‘math.h’ are floor(), sqrt(), pow(), log(). |
|