Advertisement
a3f

Untitled

a3f
Aug 22nd, 2015
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.10 KB | None | 0 0
  1. //1.c
  2. int x = 1;
  3. //2.c
  4. int x;
  5. int main() { printf("%d", x); }
  6. //
  7. $ cc 1.c 2.c && ./a.out
  8. 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement