int main(){ int fd; int e; char * buf; Create("archivo.nuevo"); fd = Open("archivo.nuevo"); Write("prueba", 6, fd) ; Close(fd); // Exec("../test/rillo"); Exec("prueba Exec"); //char* buf = new int[6]; fd = Open("archivo.nuevo"); Read(buf, 6, fd); Write(buf, 6, 1); Halt(); return 0; }