+ 1
using realloc for expand string
how to expand string without memory leak using realloc()?
2 Respostas
0
char *string = malloc(...);
/* ... */
string = realloc(...);
this code will not delete my string? if realloc() return false?
0
thank you Coder Kitten