Skip to content

Commit 2fbe72b

Browse files
authored
update tombstone
1 parent d75b89a commit 2fbe72b

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

Chapter11/array3.c

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
// array3.c
22
// Chapter 11
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate using arrays in functions and
6-
// as parameters to functions..
6+
// as parameters to functions.
7+
//
8+
// Depends upon:
9+
//
10+
// array3.h
11+
//
12+
// Compile with:
13+
//
14+
// cc array3.c -o array3 -lm -Wall -Werror -std=c11
15+
//
16+
// NOTE -lm switch to include libm.a (math library corresponding to math.h)
17+
// may not be required for all compilers/environments.
718
//
8-
// build with:
9-
// cc array3.c -o array3 -lm -Wall -Werror -std=c11
1019

1120
#include <stdio.h>
1221
#include <math.h>

0 commit comments

Comments
 (0)