Vidyalelo
Computer Science · Q384

Linux

Engineering and GATE · Computer Science · question 384

Q384

In the output of this program, the string "/* Linux */" will be added at the . . . . . . . . of the source file. #include #include #include int main() int fd; fd = open("test.c",O_RDWR|O_APPEND); write(fd,"/* Linux */",11); return 0;

A.
end
Answer
B.
beginning
C.
second line
D.
third line

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board