Skip to content

Commit a3b29dd

Browse files
authored
update tombstone
1 parent 9d00fad commit a3b29dd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Chapter14/arrays_pointers_funcs.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// arrays_pointers_funcs.c
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 using the array as a function parameter using 2 methods:
@@ -9,7 +9,9 @@
99
// c) a function with the array name using pointer arithmetic; and
1010
// d) a function with a pointer to 1st element using array notation;
1111
//
12-
// compile with: cc arrays_pointers_funcs.c -o arrays_pointers_funcs -Wall -Werror -std=c11
12+
// compile with:
13+
//
14+
// cc arrays_pointers_funcs.c -o arrays_pointers_funcs -Wall -Werror -std=c11
1315
//
1416

1517
#include <stdio.h>
@@ -95,4 +97,4 @@ void traverse4( int size , int* pArr )
9597
pArr[i] );
9698
}
9799

98-
/* eof */
100+
/* eof */

0 commit comments

Comments
 (0)