10 lines
194 B
C
10 lines
194 B
C
|
# include <stdio.h>
|
||
|
# include <stdlib.h>
|
||
|
# include <sys/stat.h>
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
struct stat a;
|
||
|
stat(argv[1], &a);
|
||
|
printf("%jd octets\n", a.st_size);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|