|
|
|
|
|
by BudVVeezer
4566 days ago
|
|
sizeof(char) is implementation defined; see limits.h for more information on the probable size of char for your target. If the sizeof(char) is 1, the division will be optimized away, so there's no loss by keeping the code portable. |
|