Computer Science, asked by palss, 8 months ago

In C language, "main()" is a library function or not??? ​

Answers

Answered by Embers
1

Explanation:

main is not a library function. However, the standard also imposes some requirements on its signature, and that it must not be overloaded or declared static or inline. In particular, it must not be used, meaning that you cannot call it.

Similar questions