Skip to content

Instantly share code, notes, and snippets.

@artemkin
Created March 1, 2016 20:51
Show Gist options
  • Save artemkin/b0dbfbf9942bffa18f4d to your computer and use it in GitHub Desktop.
Save artemkin/b0dbfbf9942bffa18f4d to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdint.h>
int main()
{
int64_t i = 12345;
if (i < INT64_C(-9223372036854775808))
printf("ERROR\n");
if (i < INT64_C(-9223372036854775807) - 1)
printf("ERROR\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment