MCQ Practice

What is the output of this program? #include #include #include int main() { struct rlimit limit; if(getrlimit(RLIMIT_CORE,&limit) != 0) perror("getrlimit"); printf("%lun",limit.rlim_max); return 0; }

A

maximum size of a core file that can be created by this process

B

maximum number of core files that can be created by this process

C

segmentaion fault

D

none of the mentioned

Correct Answer: A