#include <process.h> #include <stdio.h> #include <conio.h> int main(void) { int result; clrscr(); result = spawnl(P_WAIT, "tcc.exe", NULL); if (result == -1) { perror("Error from spawnl"); exit(1); } return 0; }