Well...
So, i have a program. A normal program, which does something, and so..
and i have another program, which wants to run the first program....
So, there are 2 questions about that problem ->
1) How can i run the program using another program? Is there anything like runProgram(Directory,Name.exe)?
2) Programs usually returns the 0 value when they end. So, can i, for example, put something like
- int main(){
-
int something;
-
//do something to the variable something
-
return something;
and get the value using another program?