11 lines
186 B
C
11 lines
186 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main() {
|
|
int n = 5;
|
|
printf("n = %d", n);
|
|
system("echo \"Directory List\" && ls && echo \\n");
|
|
return 0;
|
|
}
|