InterviewSolution
Saved Bookmarks
| 1. |
Which flag is used to compile client programs that use MySQL header files?(a) -O(b) -I(c) -U(d) -AThis question was posed to me in an online interview.The doubt is from Compiling and Linking Client Programs in portion MySQL Programs Using C of MySQL |
|
Answer» CORRECT answer is (b) -I To explain I would say: The ‘-I’ OPTION is specified when the client PROGRAMS are compiled that use the MySQL header FILES. The compiler can easily FIND these header files when the ‘-I’ option is used. |
|