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
AnswerB.
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