Which one of the following in true about this program?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *ptr;
printf("%p\n",ptr);
ptr = (char *)malloc(sizeof(char));
printf("%p\n",ptr);
return 0;
}
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *ptr;
printf("%p\n",ptr);
ptr = (char *)malloc(sizeof(char));
printf("%p\n",ptr);
return 0;
}
A. this program will give segmentation fault
B. this program will print two same values
C. this program has some syntax error
D. none of the mentioned
Answer: Option D
Related Questions on Linux
What command is used to count the total number of lines, words, and characters contained in a file?
A. countw
B. wcount
C. wc
D. count p
E. None of the above
What command is used with vi editor to delete a single character?
A. x
B. y
C. a
D. z
E. None of the above
Join The Discussion