Skip to content

Commit 418e60f

Browse files
authored
update tombstone
1 parent 3e17bd0 commit 418e60f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Chapter12/arraysND.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
// arraysND.c
22
// Chapter 12
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to declare, initialize, and
66
// manipulate 2D and 3D arrays.
77
//
88
// Pretty printing functions included which add
99
// row and column headings (as array offsets).
1010
//
11+
// Depends upon:
12+
//
13+
// arraysND.h
14+
//
15+
// Compile with:
16+
//
17+
// cc arraysND.c -o arraysND -Wall -Werror -std=c11
18+
//
1119

1220

1321
#include <stdio.h>

0 commit comments

Comments
 (0)