I am trying to write a simple program to read from a file and print it in the terminal. But the program hangs after opening the file. if I remove the reading part, it works well. I don't know what is going wrong. Can somebody help? please!
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int fd,bytes;
char buffer[10];
char path[ ] = "file";
if(fd = open(path, O_RDONLY) < 0) {
perror("open");
exit(EXIT_FAILURE);
} else {
printf("opened %s\n", path);
}
do {
bytes = read(fd,buffer,10);
printf("%d", bytes);
} while( bytes > 0);
if(close(fd) < 0) {
perror("close");exit(EXIT_FAILURE);
} else{
printf("closed %s\n", path);
}
exit(EXIT_SUCCESS);
}