だから私は、次のしている:C Struct内の変数の値を定義するにはどうすればよいですか?
struct semaphore{
int count; //or whatever value is needed
struct PCB *Sem_Queue;
};
struct semaphore Forks[5];
struct semaphore Doorman;
Doorman.count =4;
を私はドアマンのカウント= 4を設定したいのですが、上記のコードで、私は構文エラーを取得します。私は間違って何をしていますか?
(Doorman.count = 4;のような)文をグローバルスコープ(関数外)に置くことはできません。 –