Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. #include <sys/stat.h>
  4. #include <fcntl.h>
  5. #include <errno.h>
  6. #include <unistd.h>
  7. #include <string.h>
  8. int main(int argc, char*argv[])
  9. {
  10. char napis;
  11. int fd;
  12.  
  13. scanf("%s",napis);
  14. fd=open(napis, 0644);
  15.  
  16.  
  17.  
  18.  
  19. }
  20. getchar ();
  21.  
  22. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement