Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <unistd.h>
  2. #include <sys/types.h>
  3. #include <sys/stat.h>
  4.  
  5. int main(){
  6.     struct stat buffer;
  7.     int status;
  8.     status = stat("01.txt", &buffer);
  9.     printf("%d", buffer->st_dev);
  10.  
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement