0
我創建了一個結構數據類型,並試圖對這些項目的列表來動態分配內存,使用realloc
但它會導致:Visual Studio的錯誤C2226「意外型」
error C2226: syntax error : unexpected type 'Employee'
的doc只是說:一個語法錯誤發生在類型說明符之前或之中。
我找不出這裏有什麼問題。
int current_employees=0;
struct Employee *list = 0;
...
current_employees++;
list = struct Employee * realloc((void*) list, current_employees * sizeof(struct Employee));