-
-
Save timabell/0ee42f1fa956d78814fe92acdb36c2aa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// | |
// Compile with: | |
// gcc -std=c99 heresy.c | |
// | |
// Run with: | |
// ./a.out | |
// | |
// It outputs: | |
// 0 | |
// | |
// More info: https://en.wikipedia.org/wiki/Digraphs_and_trigraphs#C | |
// | |
#include <stdio.h> | |
int main() { | |
int a = 0; | |
// Will the next line be executed????????????????/ | |
a++; | |
printf("%d\n", a); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment