InterviewSolution
Saved Bookmarks
| 1. |
Which is the header that should be included first?(a) my_global.h(b) my_sys.h(c) mysql.h(d) my_local.h |
|
Answer» The correct answer is (a) my_global.h Easy explanation: The file ‘my_global.h’ takes care of including several other header files that are likely to be generally useful, like ‘stdio.h’. It also includes Windows compatibility information. |
|