File size: 197 Bytes
00df61d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>

int main() {
  int fd = open("some.file", O_RDWR);
  char buffer[100];
  read(fd, buffer, 1);
  write(fd, "some data", 9);
  close(fd);
}