Skip to content

Commit 52a57d5

Browse files
authored
update tombstone
1 parent 42a248b commit 52a57d5

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Chapter05/convertUpperLower.c

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
// convertUpperLower.c
22
// Chapter 5
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Program to convert a lower case letter to upper case
66
// and an upper case letter to lower case (operations on
77
// characters).
8+
//
9+
// Compile with:
10+
//
11+
// cc convertUpperLower.c -o convertUpperLower -Wall -Werror -std=c11
12+
//
813

914

1015
#include <stdio.h>
@@ -21,4 +26,6 @@ int main( void )
2126
lowerChar , anUpper );
2227
printf( "Upper case '%c' can be changed to lower case '%c'\n" ,
2328
upperChar , aLower );
24-
}
29+
}
30+
31+
// eof

0 commit comments

Comments
 (0)