qfedu-linux-advanced-level/day4/file4_1.c

11 lines
159 B
C
Raw Permalink Normal View History

2023-08-17 19:22:02 +08:00
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int main()
{
printf("hi, file4_1");
return 0;
}