構造体を定義してbuffに対して
キューイングしていきたいのですが
以下のエラーが発生してうまく処理できません。
** error: ‘que’ undeclared (first use in this function)**
対応方法をご教示願います。
c
1struct kozotai { 2 char *buff; 3}; 4 5 6struct kozotai *constructor() 7{ 8 struct kozotai Queue; 9 Queue *que = malloc(sizeof(Queue)); 10 return que; 11}
回答2件
あなたの回答
tips
プレビュー