一般一個malloc包含sizeof
,但是這一個不具有ⅰ+ 1,而不是:爲什麼在這個C代碼中malloc i + 1的參數?
int main()
{
int i,n;
char * buffer;
printf ("How long do you want the string? ");
scanf ("%d", &i);
buffer = (char*) malloc (i+1);
if (buffer==NULL) exit (1);
更不用說,你不應該真的施放'malloc'的返回值。 – 2012-02-25 03:14:52