#include <stdlib.h>
int main(){
system("echo foo");
return 0;
}
include <stdlib.h>
- standard C library that contains system functionssystem("echo foo")
- function receives the argument (echo foo
in this case) and executes it on the terminal.