Recent posts tagged barc-2021

1
int *f1(void){int x=10; return (&x);}int *f2(void){int *ptr;*ptr=10;return ptr;}int *f3(void){int *ptr;ptr=(int*)malloc(sizeof(int));return ptr;}Which of the above 3 func...
To see more, click for the full list of questions or popular tags.