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

8 lines
68 B
C
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
#include <stdlib.h>
int main()
{
system("ls");
return 0;
}