b) Escriba un programa C/Python simple que permita utilizar todas las funciones de tipo exec() del sistema.
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char **argv) { printf("argc: %d\n", argc); if (argc > 1) { for (int i = 1; i < argc; i++) { char cmd[1024]; strcpy(cmd, argv[i]); system(cmd); } } else { printf("no arguments."); } return 0; }