MCQ Practice
What is stored in logfile as per below mentioned code if we execute ./a.out > logfile? int main() { int fd; close(1); fd = open(“logfile”,O_RDWR, 0744); write(fd, “Hello”, 5); printf(“Worldn”); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: B
