Skip to content

Instantly share code, notes, and snippets.

@tvararu
Created September 10, 2019 13:08
Show Gist options
  • Save tvararu/65fb84ed11b527c6ebb66adec7876be9 to your computer and use it in GitHub Desktop.
Save tvararu/65fb84ed11b527c6ebb66adec7876be9 to your computer and use it in GitHub Desktop.
//
// 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