18 lines
244 B
C
18 lines
244 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
FILE* fp = fopen("/dev/version", "r");
|
|
if (!fp)
|
|
{
|
|
perror("fopen");
|
|
return 1;
|
|
}
|
|
|
|
char buf[BUFSIZ];
|
|
fgets(buf, sizeof(buf), fp);
|
|
|
|
printf("%s\n", buf);
|
|
|
|
fclose(fp);
|
|
} |