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 |
What is the purpose of the statement: strcat (S2, S1)?
what is void pointer?
What are the loops in c?
What is data structure in c language?
State the difference between x3 and x[3].
What is volatile c?
What is the difference between volatile and const volatile?
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
What is the Lvalue and Rvalue?
what is an inline fuction??
write a program of bubble sort using pointer?
how the compiler treats any volatile variable?Explain with example.