I found a note in a Software Development Plan:
Use of declared types is encouraged. Use of processor dependent types such as
char
,int
, andlong
is discouraged.
What is the point of this statement? Why is the use of declared types encouraged?
An example of a declared type in this context would be BOOL
instead of bool
.