What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
int main()
{
char *ptr;
ptr = (char *)malloc(sizeof(char)*8);
ptr = "example";
printf("%s\n",*ptr);
return 0;
}
#include<stdio.h>
#include<stdlib.h>
int main()
{
char *ptr;
ptr = (char *)malloc(sizeof(char)*8);
ptr = "example";
printf("%s\n",*ptr);
return 0;
}
A. example
B. segmentation fault
C. syntax error
D. none of the mentioned
Answer: Option B
Join The Discussion