This commit is contained in:
CH
2023-10-02 19:13:02 +08:00
parent e3874afbb7
commit a1857f3528
5 changed files with 12 additions and 0 deletions

11
app.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <unistd.h>
int main (){
for (int i=0;i<10;i++){
printf("app \n");
sleep(1);
}
printf("a \n");
return 663;
}