parent
04a2874c7f
commit
3f0605e32f
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": []
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
void main() {
|
||||||
|
printf("Ejemplo de uso de excel():");
|
||||||
|
printf("\n\tListado del directorio actual:");
|
||||||
|
execl("/bin/ls","ls","-l", (char *)NULL);
|
||||||
|
printf("\nEsta instrucción no se llega a ejecutar");
|
||||||
|
}
|
Loading…
Reference in new issue