RosettaCodeData/Task/Execute-a-system-command/C/execute-a-system-command.c

8 lines
68 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <stdlib.h>
int main()
{
system("ls");
return 0;
}