What is the use of typedef?

typedef is for defining something as a type. For instance:

typedef struct {
  int a;
  int b;
} THINGY;

…defines THINGY as the given struct. That way, you can use it like this:

THINGY t;

…rather than:

struct _THINGY_STRUCT {
  int a;
  int b;
};

struct _THINGY_STRUCT t;

…which is a bit more verbose. typedefs can make some things dramatically clearer, specially pointers to functions.

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)