私はコードを持っています:
#DEFINE NEW = 1;
そして構造体:
typedef struct PCB
{
/*Process state:new, ready, running, waiting, terminated*/
int state;
}PCB;
state = 1のようにNEWを割り当てるにはどうすればよいですか?
詳細については、エラーが発生します:
expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘=’ token