InterviewSolution
Saved Bookmarks
| 1. |
Which header should be included first?(a) my_global.h(b) my_sys.h(c) mysql.h(d) my_local.h |
|
Answer» Right choice is (a) my_global.h For 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. |
|