Could not able to solve this.. I am implementing a queue. After writing the complete code I had the error listed below:
expected = , , , ; , asm or __attribute__ before . token
然后我写了一个简单的方案,但同样的问题依然存在。 能够理解如何解决这一问题。 我研究了<代码>stackoverflow.com和google.com>/code>中的解决办法。 很多,但仍然无法解决这一问题。 请提供帮助。
I would like to initialize globally
Q.front = Q.rear = Any value
#include <stdio.h>
#include <stdlib.h>
struct Queue
{
int front, rear;
int queue[10] ;
};
struct Queue Q;
Q.front = 0;
Q.rear = 0;
int main()
{
return 0;
}