Originariamente inviato da Laikius91
Non ho molto esperienza di C++ sinceramente... ma con il C nelle librerie standard (stdio.h) hai la funzione:

codice:
system("comando");
che esegue da terminale ciò che viene passato in "comando"!

Se fosse così anche in c++ basterebbe ad es. mettere nel codice .cpp che richiama i tre .exe :


system("1.exe");
system("2.exe");
system("3.exe");

???

Grazie!