Recent posts tagged barc-cse

1
But in c by default storage specifier is auto..static keyword is always explicitly written..plz explain
2
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.