mvr (owner)

Revisions

gist: 214034 Download_button fork
public
Description:
cpp quine
Public Clone URL: git://gist.github.com/214034.git
Embed All Files: show embed
C #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# ifndef P
# define Q(x, y) x ## y
# define P P
# include __FILE__
# undef Q
# define Q(x, y) Q(x, y)
# endif
 
Q(#,) ifndef P
Q(# define Q(x, y) x ## y,)
Q(#,) define P P
Q(#,) include __FILE__
Q(#,) undef Q
Q(# define Q(x, y) Q(x, y),)
Q(#,) endif