Skip to content

Commit 1fb1eff

Browse files
authored
update tombstone
1 parent 97f70b6 commit 1fb1eff

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Chapter11/array1.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
// array1.c
22
// Chapter 11
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to declare and initialize
6-
// arrays..
6+
// arrays.
77
//
8+
// Compile with:
9+
//
10+
// cc array1.c -o array1 -Wall -Werror -std=c11
11+
//
812

913
#include <stdio.h>
1014

@@ -33,3 +37,5 @@ int main( void )
3337
printf( " sizeof(lengthArray) = %2d bytes\n" , arraySize );
3438
printf( " lengthArray[] has %d elements\n" , elementNum );
3539
}
40+
41+
// eof

0 commit comments

Comments
 (0)