I know we should free any variable allocated with malloc, but what if I return it in a function? Something like this:
char *somefunction(int somearg){
char *str;
str=(char *)malloc(sizeof(char *));
//some code
return str;
}
Should I free str? How could I do that?

malloc()is almost certainly wrong - you're allocating enough memory to store achar *, but assigning to a pointer that points tochar(and there's no need to cast the return value ofmallocin C, either).str = malloc(N * sizeof *str);is a better way to write that. – caf Aug 20 at 12:32