Vidyalelo
Computer Science · Q523

Linux

Engineering and GATE · Computer Science · question 523

Q523

What is the output of this program? #include #include int main() int fd, count; char ch; fd = open("demo.txt",O_RDWR|O_CREAT); write(fd,"s",1); lseek(fd,0,SEEK_SET); write(fd,"d",1); lseek(fd,0,0); read(fd,&ch,1); printf("%c ",ch); return 0;

A.
d
B.
s
C.
sd
D.
none of the mentioned
Answer

Answer: Option D

Solution

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