Does there exist any other alternative data structure instead of struct tm
(having same memory allocated as this structure) ? So that I could use strftime
without declaring <time.h>
I am aware of the fact that relying on implicit declaration is not good,but I faced this question in an interview.
EDIT: To be precise I was asked to print the month for a corresponding integer using standard library function,but not allowed to include any header file.
No, you need to use time.h include file.
However, if you really want to use strftime and compile without errors or warnings, you could redefine the struct data type in your C file, and also the function prototype to use without including that file. You could call your struct type a different name as long as it matches up with the one currently in your time.h file.