Skip to content

Commit a01ba79

Browse files
authored
Fix printf argument to avoid warning
Removed warning comment about unknown escape sequence.
1 parent 7c1a3cf commit a01ba79

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#include <stdio.h>
22

33
int main(void) {
4-
printf("hello, world\c"); /*prints warning: unknown escape sequence '\c' */
4+
printf("hello, world\c");
55
return 0;
66
}
7+
8+
// prints warning: unknown escape sequence '\c'

0 commit comments

Comments
 (0)