Skip to content

Instantly share code, notes, and snippets.

@shumon84
Last active March 15, 2017 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shumon84/5813c956cbcdcb5f6b76aeb3ff445a75 to your computer and use it in GitHub Desktop.
Save shumon84/5813c956cbcdcb5f6b76aeb3ff445a75 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main(void)
{
int hoge=100;
long huga=10000000000; /* 100億 */
hoge-=huga;
printf("%d\n",hoge);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment