diff options
Diffstat (limited to 'semestr-5/so/lista1/rozwiazania')
-rw-r--r-- | semestr-5/so/lista1/rozwiazania/zad3.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/semestr-5/so/lista1/rozwiazania/zad3.c b/semestr-5/so/lista1/rozwiazania/zad3.c new file mode 100644 index 0000000..c575be8 --- /dev/null +++ b/semestr-5/so/lista1/rozwiazania/zad3.c @@ -0,0 +1,10 @@ +#include<unistd.h> + +const char *t[2]; + +int main() { + t[0] = "siemandero"; + t[1] = NULL; + + execvp("python", t); +} |