some functions like strcpy return a pointer to a char, how can the developper use this return value code example
Example: c copy string
char *str = "Hello World!";
char copy[64]; // or 'char *copy = malloc(strlen(str) + 1);'
strcpy(copy, str);
char *str = "Hello World!";
char copy[64]; // or 'char *copy = malloc(strlen(str) + 1);'
strcpy(copy, str);