Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / vikas kumar shakya
main() is a user defined function. it is the entry point of
any program.
At run time the main() function is searched as the entry to
start the program.
| Is This Answer Correct ? | 23 Yes | 6 No |
Post New Answer View All Answers
What is #ifdef ? What is its application?
What is a MAC Address?
What are pointers in C? Give an example where to illustrate their significance.
What is the purpose of 'register' keyword?
Explain what is the difference between far and near ?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
can we implement multi-threads in c.
What is the equivalent code of the following statement in WHILE LOOP format?
How can I direct output to the printer?
Is c object oriented?
Explain what is a program flowchart and explain how does it help in writing a program?
Explain how can I pad a string to a known length?
Does c have circular shift operators?
What language is windows 1.0 written?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.