What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
int main()
{
char *ptr;
free(ptr);
return 0
}
#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
Answer: Option C

Join The Discussion