Skip to content

Commit 1199027

Browse files
authored
update tombstone
1 parent fedf196 commit 1199027

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Chapter13/pointers3.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// pointers3.c
22
// Chapter 13
3-
// <book title>
3+
// Learn C Programming
44
//
55
// This program builds on program pointers2.c
66
//
@@ -11,7 +11,9 @@
1111
// 1) removes the pointer variables in main()
1212
// 2) call function with references w/o pointer variables.
1313
//
14-
// compile with: cc pointers3.c -o pointers3 -Wall -Werror -std=c11
14+
// Compile with:
15+
//
16+
// cc pointers3.c -o pointers3 -Wall -Werror -std=c11
1517
//
1618

1719
#include <stdio.h>
@@ -50,3 +52,5 @@ int main( void )
5052
showVariable( "length" , &length );
5153
}
5254

55+
// eof
56+

0 commit comments

Comments
 (0)