https://quizack.com/system-programming/mcq/how-many-bytes-of-a-file-of-size-1023-will-be-read-by-the-following-piece-of-code
How many bytes of a file of size 1023 will be read by the following piece of code?
char buf[256];
while (read(fd, buf, 256)) {
/* Take some action */
}
1024
1023
0
768
Answer:
1023
Note: This Question is unanswered, help us to find answer for this one
More System Programming MCQ Questions