Created
September 10, 2019 13:08
-
-
Save tvararu/65fb84ed11b527c6ebb66adec7876be9 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