Thursday, June 16, 2011

6.7 Typedef

  • C provides a facility called typedef for creating new data type names
  • ie. typedef int Length;        (Length a synonym for int)
  • ie. typedef char *String;       (String a synonym for char * or character pointer)

No comments:

Post a Comment