With GCC family of C compilers, we can mark some functions to execute before and after main(). So some startup code can be executed before main() starts, and some cleanup code can be executed after main() ends. For example, in the following program, myStartupFun() is called before main() and myCleanupFun() is called after main().
#include<stdio.h>
void myStartupFun ( void ) __attribute__ ((constructor));
void myCleanupFun ( void ) __attribute__ ((destructor));
void myStartupFun ( void )
{
printf ( "startup code before main()\n" );
}
void myCleanupFun ( void )
{
printf ( "cleanup code after main()\n" );
}
int main ( void )
{
printf ( "hello\n" );
return 0;
}
|
Output:
startup code before main()
hello
cleanup code after main()
Like the above feature, GCC has added many other interesting features to standard C language. See this for more details.
Related Article :
Executing main() in C – behind the scene
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.