Is it possible to avoid the entry point (main) in a C program. In the below code, is it possible to invoke the func() call without calling via main()
func()
main()
Rename main to be func and func to be main and call func from name.
If you have access to the source, you can do this and it's easy.