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; }