1.

Which of the given option is declared under the header file stdlib.h?(a) SEEK_CUR(b) SEEK_END(c) CLOCKS_PER_SEC(d) EXIT_SUCCESSThis question was addressed to me in an interview for job.Question is taken from General Utilities topic in portion C Library of C

Answer»

Correct ANSWER is (d) EXIT_SUCCESS

To explain: SEEK_CUR and SEEK_END is DEFINED under stdio.h, CLOCKS_PER_SEC is defined under time.h, EXIT_SUCCESS is defined under stdlib.h.

EXIT_SUCCESS specifies value for status argument to exit INDICATING SUCCESS.



Discussion

No Comment Found

Related InterviewSolutions