This is the snippet where I call the main of another class by including its header file...
As the title says, I want to invoke the main() of a program with parameters from another C program.
Example:
Suppose there are two programs:
imain.c
and another.c
I wish to call the main() of imain.c
from the body of main in another.c
and pass parameters..