MCQOPTIONS
Saved Bookmarks
| 1. |
What is stored in logfile as per below mentioned code if we execute ./a.out > logfile?nt main() { int fd; close(1); fd = open(“logfileâ€,O_RDWR, 0744); write(fd, “Helloâ€, 5); printf(“World\nâ€); return 0; } |
| A. | hello |
| B. | helloworld |
| C. | world |
| D. | none |
| Answer» C. world | |