We can write the program without main() in C language
A
Correct answer
Explanation
This is technically TRUE in modern C (C99 and later). Using #include and replacing main() with a different entry point or using certain compiler extensions allows programs without main(). However, in standard C89/C90 and traditional C education, main() is required. This question tests knowledge of C standards evolution rather than practical programming.