typedef versus #define in C\C++
typedef and #define are commonly used in C\C++. Below are some of the difference and similarity between them typedef is used to give data type a new name. #define is a C\C++ directive which is used to define alias. // BYTE can be used in place of unsifned char typedef [...]