Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: limits.h isn't required; INT_MAX is in a comment

...

Code Block
bgColor#ffcccc
langc
#include <limits.h>
 
void func(float f_a) {
  int i_a;
 
  /* Undefined if the integral part of f_a >= INT_MAX */
  i_a = f_a;
}

...