Skip to content

Commit

Permalink
a small quine in C
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay committed Sep 28, 2013
1 parent 27bf600 commit 98371f2
Show file tree
Hide file tree
Showing 6 changed files with 878 additions and 0 deletions.
Binary file added backslash_newline
Binary file not shown.
12 changes: 12 additions & 0 deletions backslash_newline.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@


#include <stdio.h>

int main(void) {
char *s = "this is a very \
very very \
long string";
char ch = '\142';
printf("%s\n%c\n", s, ch);
return 0;
}
Loading

0 comments on commit 98371f2

Please sign in to comment.