File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments