MCQ Practice
What is the output of this program? #include #include int main() { pid_t fd; char ch; int count; fd = open("demo.c",O_RDONLY); do{ count = read(fd,&ch,1); printf("%c",ch); }while(count); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: B
