Skip to content

Commit ee6e651

Browse files
authored
update tombstone
1 parent 09dc8e5 commit ee6e651

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Chapter05/prefixpostix.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
// prefixpostfix.c
22
// Chapter 5: Exploring Operators and Expressions
3-
// <book title>
3+
// Learn C Programming
44
//
55
// A program to illustrate when the prefix and postfix
66
// increment operator changes the value of a variable.
77
//
88
// Confusion or doubt can be removed by making the
99
// incrementation its own statement.
10+
//
11+
// Compile with:
12+
//
13+
// cc prefixpostfix.c -o prefixpostfix -Wall -Werror -std=c11
14+
//
1015

1116
#include <stdio.h>
1217

0 commit comments

Comments
 (0)