Computer Science, asked by TbiaSupreme, 1 year ago

main() is the function from where execution of the program begins. State whether the statement is True (or) False And Justify it

Answers

Answered by aditya1984
5
true

In C programming, the code execution begins from the start of main() function doesn’t matter if main() isn’t located at the beginning.

The code inside the curly braces { } is the body of main() function. The main() function is mandatory in every C program.
Answered by aqibkincsem
0

Yes, Main() is the function from where the execution of the program begins. It is the starting point of the program that begins the program execution from the starting point to the end.

This is done by the direction of the call to the functions that are present in the program and is well-defined.

Similar questions