Q875
What is the output of this program? #include #include #include int main() long int value; int fd; fd = open("/home/example/demo.c",O_RDONLY); value = fpathconf(fd,_PC_LINK_MAX); printf("%ld ",value); return 0;
A.
this program will print the maximum number of links to the file "demo.c"
AnswerB.
this program will print nothing
C.
this program will give an error
D.
none of the mentioned
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board