- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to call the main function in C program?
In 'C', the "main" function is called by the operating system when the user runs the program and it is treated the same way as every function, it has a return type. Although you can call the main() function within itself and it is called recursion. Recursion is nothing but calling the same function by the function itself.
How Do Recursion and Function Calling Work?
You must be thinking that when the main() function calls inside main(), recursion goes on infinitely. But that is not true and it is important to know how recursion and function calling works. The function calls work with the help of PUSHING and POPPING of functions in and out from the stack respectively during execution.
The Recursion Takes Place Stack Size
Suppose there is a function, funct11() is called within main() function, the funct11() is pushed onto the stack, similarly there is another function funct22() is called by funct11, then it is pushed onto the stack and when it gets completed, POPed from the stack. The function call takes place until the stack is completely filled with the functions. This means that the recursion without a suitable condition takes place stack size times not infinite times.
The Procedure
In 'C' you can even call the main() function, which is also known as the "called function" of one program in another program, which is called "calling function"; by including the header file into the calling function. For example, if there are two programs first.c and another.c. You wish to call the main() of first.c from the body of main in another.c and pass parameters, in that case, you need to create a header file containing the function prototype at first. Finally, this header file will be included in any file that uses the function and in every .c file that you need to use the function. The compiler and linker will take care of the rest.
- Related Articles
- Can main function call itself in C++?
- How to call a JavaScript function from C++?
- How to Call a Lua function from C?
- How to call a virtual function inside constructors in C++?
- How to call a parent class function from derived class function in C++?
- C/C++ Function Call Puzzle?
- How to call a function in JavaScript?
- C++ program to find addition and subtraction using function call by address
- How to call jQuery function with JavaScript function?
- A C/C++ Function Call Puzzle?
- Differentiate between int main and int main(void) function in C
- How to use setInterval function call in JavaScript?
- How to call a JavaScript function in HTML?
- How to call a Java function inside JavaScript Function?
- In Swift how to call a method with parameters on GCD main thread?
