MCQ Practice

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("%ldn",value); return 0; }

A

this program will print the maximum number of links to the file "demo.c"

B

this program will print nothing

C

this program will give an error

D

none of the mentioned

Correct Answer: A