Created
December 2, 2015 13:15
-
-
Save elieux/e5b53991f0d7ad17c630 to your computer and use it in GitHub Desktop.
mingw-w64 %lld example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* gcc -ggdb -Wall -Wextra -pedantic "lld.c" -o "lld.exe" */ | |
#define __USE_MINGW_ANSI_STDIO 1 | |
#include <stdio.h> | |
int main() { | |
long long int answer = 42; | |
printf("The answer is: %lld\n", answer); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment