![]() |
VOOZH | about |
Since it is known that main() method is the entry point of the program. Hence it is the first method that will get executed by the compiler. But this article explains how to call some function before the main() method gets executed in C++. To call some function before main() method in C++,
Below is the implementation of the above approach:
Now when the program will get executed, the global variable will get created before calling the main() method. Now, while creating the object with the help of a constructor, the constructor will get executed and the other function will get executed before main() method. Hence we can easily call the function before the main().
In C++, you can call a function before the main() function using the constructor attribute. This attribute allows you to specify a function that will be automatically called before main().
Output:
This function is called before main()
Inside main()
In this example, we define a function called my_function() and declare it using the constructor attribute. This function will be automatically called before main(). Inside the function, we simply print a message to the console. In main(), we print another message to the console.
Note that the order of execution of constructor functions is not guaranteed, so if you have multiple functions with the constructor attribute, there is no guarantee which one will be executed first.