Skip to content

Instantly share code, notes, and snippets.

@elieux
Created December 2, 2015 13:15
Show Gist options
  • Save elieux/e5b53991f0d7ad17c630 to your computer and use it in GitHub Desktop.
Save elieux/e5b53991f0d7ad17c630 to your computer and use it in GitHub Desktop.
mingw-w64 %lld example
/* 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