Q812
This program will print the . . . . . . . . string. #include int main() int fd[2]; char buff[11]; if (pipe(fd) != 0) perror("pipe"); write(fd[1],"Example",11); lseek(fd[0],0,3); read(fd[0],buff,11); printf("%s ",buff); return 0;
A.
"Example"
AnswerB.
"exam"
C.
"linux"
D.
none of the mentioned
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board