e.g. for the following file
//! gcc {0}; ./a
//! g++ {0}; ./a
//! clang {0}; ./a
//! clang++ {0}; ./a
//test.c
#include <stdio.h>
int main() {
printf("Hello");
}
will execute gcc test.c; ./a
will execute g++ test.c; ./a
will execute clang test.c; ./a
will execute clang++ test.c; ./a
e.g. for the following file
will execute
gcc test.c; ./awill execute
g++ test.c; ./awill execute
clang test.c; ./awill execute
clang++ test.c; ./a