Skip to content

Commit 1adbe30

Browse files
authored
update tombstone
1 parent a3b29dd commit 1adbe30

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Chapter14/syarra_sretniop.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
// syarra_sretniop.c (this is a play on "arrays" and "pointers" reversed.
22
// Chapter 14
3-
// <book title>
3+
// Learn C Programming
44
//
55
// This is a copy of arrays_pointers.c which spefically demonstrate how to
66
// traverse the array _in_reverse_ using 3 methods:
77
// a) using array notation incrementing index;
88
// b) using pointer plus offset (pointer doesn't change); and
99
// c) using incremented pointer (pointer changes).
1010
//
11-
// compile with: cc syarra_sretniop.c -o syarra_sretniop -Wall -Werror -std=c11
11+
// compile with:
12+
//
13+
// cc syarra_sretniop.c -o syarra_sretniop -Wall -Werror -std=c11
1214
//
1315

1416
#include <stdio.h>
@@ -86,4 +88,4 @@ int main(int argc, char *argv[])
8688
}
8789
}
8890

89-
/* eof */
91+
// eof

0 commit comments

Comments
 (0)