OK, I've been searching the net for quite a while and I can't figure it out. I have a simple C program, let's call it a.cand I have another C program (b.c) that needs to invoke a.c's main(argc, argv) method. How can this (if at all) be done?Code:#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello World!\n");
return 0;
}
