C Compilers Disprove Fermat’s Last Theorem (2010)
4 points by wilsonzlin 2 years ago | 1 comment- josephcsible 2 years agoThe C standard says this:
> An iteration statement may be assumed by the implementation to terminate if its controlling expression is not a constant expression,158) and none of the following operations are performed in its body, controlling expression or (in the case of a for statement) its expression-3:159)
> — input/output operations
> — accessing a volatile object
> — synchronization or atomic operations.
So I guess this behavior is totally legitimate now after all.