show/hide this revision's text 2 added 430 characters in body

There are at least 3 things that keep this program from being portable:

  1. 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
  2. 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 char since char is by definition one byte long; your program will not function properly on such systemshave 16-bit or even 32-bit bytes, think DSPs.
  3. Lastly, etc.) or there are many machines where int is 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.
show/hide this revision's text 1

Multi-character constants are not portable so it won't work on compilers that don't support this. Also, it won't work on any system where a byte is more than 8 bits (many systems have 16-bit or even 32-bit bytes, think DSPs, etc.) or machines where int is only 16-bits (this includes many systems, think embedded devices and legacy machines).