Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

typedef c struct

/* Method one */
typedef struct Vertex {
    int x;
    int y;
} Point;

/* Method two */
struct Vertex { 
    int x;
    int y;
}
typedef struct Vertex Point;
 
PREVIOUS NEXT
Tagged: #typedef #struct
ADD COMMENT
Topic
Name
2+1 =