We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
In the book "TCP/IP Lean" [1], the author states: "I have used #define in preference to typedef because compilers use better optimisation strategies for their native data types." Is this true of the Keil C51 compiler? ie, will C51 generate better-optimised code from source using
#define U8 unsigned char
typedef unsigned char U8