-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ajay
committed
Sep 28, 2013
1 parent
27bf600
commit 98371f2
Showing
6 changed files
with
878 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
Oops, something went wrong.