What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *ptr;
ptr = (char*)malloc(sizeof(char)*8);
strcpy(ptr,"example");
printf("%d\n",*ptr);
return 0;
}
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *ptr;
ptr = (char*)malloc(sizeof(char)*8);
strcpy(ptr,"example");
printf("%d\n",*ptr);
return 0;
}A. e
B. example
C. 101
D. segmentation fault
Answer: Option C

Join The Discussion