Чтобы запустить файл ac, сначала вам нужно скомпилировать его в машинный код, а затем выполнить его.
Чтобы скомпилировать его: запустите gcc source-file -o executetable-file
Torun, execute: executetable-file
Чтобы сделать то же самое в C, используйте функцию system()
из <stdlib.h>
const char* tempFile = "./tempfile";
const char* sourceFile = "hello.c";
const char compileCommand[255];
sprintf(compileCommand, "gcc %s -o %s", sourceFile, tempFile);
system(compileCommand);
system(tempFile);
Этот код не был проверен.