Skip to content

Instantly share code, notes, and snippets.

@def-
Created January 6, 2015 02:39
Show Gist options
  • Save def-/d86c40de803819d7d535 to your computer and use it in GitHub Desktop.
Save def-/d86c40de803819d7d535 to your computer and use it in GitHub Desktop.
NAN in C compilers
#include<math.h>
#include<stdio.h>
// clang: HERE2
// gcc: HERE2
// tcc: NO OUTPUT
int main()
{
if (0.0 <= NAN)
puts("HERE1");
if (!(0.0 <= NAN))
puts("HERE2");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment