#include #include int main(){ int fd = open("call_read.c", O_RDONLY); char first_letter; read(fd, &first_letter, 5); close(fd); return 0; }