There are at least 3 things that keep this program from being portable:
- Multi-character constants are not portable implementation-defined so it won't work on different compilers that don't support thismay handle them differently.Also
- A byte can be more than 8 bits, it won't work on any system there is plenty of hardware where the smallest addressable unit of memory is 16 or even 32 bits, you often find this in DSPs for example. If a byte is more than 8 bits (many then so will
charsincecharis by definition one byte long; your program will not function properly on such systemshave 16-bit or even 32-bit bytes, think DSPs. - Lastly, etc.) or there are many machines where
intis only 16-bits (this includes many systems, think which is the smallest size allowed for int) including embedded devices and legacy machines)machines, your program will fail on these machines as well.
