Can anyone tell me how to link multiple programs?
I'm using this
void main(int argc, char argv){
...
if(...)
system("program1"
;
else if(...)
system("program2"
;
else if(...)
system("program3"
;
exit(0);
But this is giving me core dumps, which I do not have access to
I'm using this
void main(int argc, char argv){
...
if(...)
system("program1"

else if(...)
system("program2"

else if(...)
system("program3"

exit(0);
But this is giving me core dumps, which I do not have access to