user319824
user319824

Reputation:

how can I execute c program under another one

How can I execute a c program under another one. Assume you have one c code (program), and you want to call another one. Because you want to send input to it then score its return data with comparing another expected return data.

try.c

int main(void) {
    for (i = 0; i < MAX; ++i) {
        /* call another program ( namely, try2.c ) to give it a single input,
        then measure its returning data /*
    }
    return 0;
}

try2.c reside in another FILE.

Compiler is gcc, and under system linux

Upvotes: 0

Views: 606

Answers (1)

Šimon T&#243;th
Šimon T&#243;th

Reputation: 36433

system, popen or platform depended features like fork and exec

Upvotes: 3

Related Questions