MCQ Practice
What is the output of this program? #include #include int main() { int fd, count; fd = open("demo.txt",O_WRONLY|O_CREAT); count = write(fd,"Linux System Programming",5); if(count != 5) perror("write"); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A