what is the need for main function in c?
Answers were Sorted based on User's Feedback
Answer / inamdar
every program execution is starts from the main()
function.compiler starts execution from main()
function.by default it returns integer value.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / kartik
The main() function represenrs starting of the program.When
ever we write main in program the system analyse starts from
tthere
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / musharaf ali
every program start from the main function whatever main is defined anywhere in program.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sanjay bhosale
Every c program execution starts from startup procedure which internally calls exit(main({parameters here})).
so to start execution we need main() function in our program.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shafi shaik
Every Programing Language the program Compilation Starts
with main(). Becase The main() os a Driver function.
Exam any application(valclator , ms-word etc) to clicking
the mouse the application internally execute the
application through the dos prompt
| Is This Answer Correct ? | 0 Yes | 2 No |
convert 0.9375 to binary
Tell me is null always defined as 0(zero)?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
What is a lvalue
What are the different pointer models in c?
What is an operator?
How do you declare a variable that will hold string values?
When should structures be passed by values or by references?
Difference between for loop and while loop?
What are the average number of comparisons required to sort 3 elements?
what is the use of a array in c
how to add numbers without using arithmetic operators.