Skip to content

Commit bc9da02

Browse files
authored
update tombstone
1 parent 760f5de commit bc9da02

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Chapter05/convertTemperature.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
// convertTemp1.c
22
// Chapter 5
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Program to convert temperature values
66
// to and from Celsius and Fahrenheit.
77
//
88
// Note how we test our functions's correct
99
// calculations.
10+
//
11+
// Compile with:
12+
//
13+
// cc convertTemp1.c -o convertTemp1 -Wall -Werror -std=c11
14+
//
15+
1016

1117
#include <stdio.h>
1218

0 commit comments

Comments
 (0)