I cannot understand the point of this simple code.

Posted by M4design on Stack Overflow See other posts from Stack Overflow or by M4design
Published on 2010-05-21T12:19:33Z Indexed on 2010/05/21 12:20 UTC
Read the original article Hit count: 216

Filed under:
|
|
|

I am doing this assignment, and there are some stuff (from start-up materials) that I cannot comprehend.

typedef enum
{
    NORTH,
    EAST,
    SOUTH,
    WEST,
    NUM_POINTS
} Point;

typedef Point Course[NUM_POINTS] ;

I don't get the idea behind the last line , and how can I use it in the code?

© Stack Overflow or respective owner

Related posts about c

    Related posts about adt