โช Choose the correct option.
What will be the output of the program on GCC compiler?
#include
#include
int main() {
int *p;
p = (int *)malloc(20);
printf("%d ", sizeof(p));
free(p);
return 0;
}
What will be the output of the program on GCC compiler?
What will be the output of the program on GCC compiler?
#include
#include
int main() {
int *p;
p = (int *)malloc(20);
printf("%d ", sizeof(p));
free(p);
return 0;
}