diff options
Diffstat (limited to 't/t4051/appended1.c')
-rw-r--r-- | t/t4051/appended1.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/t4051/appended1.c b/t/t4051/appended1.c new file mode 100644 index 0000000..a9f56f1 --- /dev/null +++ b/t/t4051/appended1.c @@ -0,0 +1,15 @@ + +int appended(void) // Begin of first part +{ + int i; + char *s = "a string"; + + printf("%s\n", s); + + for (i = 99; + i >= 0; + i--) { + printf("%d bottles of beer on the wall\n", i); + } + + printf("End of first part\n"); |