MCQ Practice

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("%sn",buff); return 0; }

A

"Example"

B

"exam"

C

"linux"

D

none of the mentioned

Correct Answer: A