typedef char Queue_entry node_entry ;
You're missing a comma after Queue_entry. But be aware that this won't solve all your problems, the next compile resulted in 102 errors! Most of them seem to be references to the identifier Node which you don't declare in time, and places where you used spaces instead of underscores.
And you should use <iostream> instead of <iostream.h>. Then use the namespace "std" and you'll be fine.
All the buzzt CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.