Interview Questions - Main function in C
- What is the prototype of main()? what does it return ? what it can not return ? How to make other function as starting point of program ?
- Is exit(status) equivalent to returning the same status from main()?
- What is Recursion ? Can main() be called recursively?
- How to print the arguments recieved by main()?
