Q498
What is the output of this program? #include #include #include int main() struct rlimit limit; if(getrlimit(RLIMIT_CORE,&limit) != 0) perror("getrlimit"); printf("%lu ",limit.rlim_max); return 0;
A.
maximum size of a core file that can be created by this process
AnswerB.
maximum number of core files that can be created by this process
C.
segmentaion fault
D.
none of the mentioned
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board