linux_c_learn/exec/app.c

6 lines
94 B
C

#include <stdio.h>
int main(int argc ,char *argv[]){
printf("app run\n");
return 0;
}