MCQ Practice
What is the output of this program? #include #include #include int main() { int fd, count; char ch, *buff; buff = (char *)malloc(sizeof(char)*10); fd = open("demo.c",O_RDONLY); count = read(fd,buff,5); printf("%dn",count); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A
