Q180
What is the output of this program? #include #include int main() int fd, count; fd = open("demo.c",O_RDONLY); count = write(fd,"Linux",5); if(count != 5) perror("write"); return 0;
A.
it will write the string "Linux" in the beginning of source file "demo.c"
B.
it will write the string "Linux" in the end of the source file "demo.c"
C.
segmentation fault
D.
none of the mentioned
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board