Skip to content

Instantly share code, notes, and snippets.

@gugod
Last active June 28, 2016 20:33
Show Gist options
  • Save gugod/10394e5ccfc784bd93a9fdb8acf22bf6 to your computer and use it in GitHub Desktop.
Save gugod/10394e5ccfc784bd93a9fdb8acf22bf6 to your computer and use it in GitHub Desktop.
/* clang a.c -o a */
#include <stdio.h>
int main() {
int a=1,а=42;
printf("%d\n", a); // 1
printf("%d\n", а); // 42
printf("%d\n", a); // 1
printf("%d\n", а); // 42
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment