⟩ What is the output of this program? #include<stdio.h> #include<stdlib.h> int main() { char *ptr; free(ptr); return 0 } a) this program will print nothing after execution b) segmentation fault c) Aborted (core dumped) d) none of the mentioned
c) Aborted (core dumped)