Multiple choice technology programming languages

We can write the program without main() in C language

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.