We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1a3cf commit a01ba79Copy full SHA for a01ba79
chapter_1/exercise_1_02/printf_argument.c
@@ -1,6 +1,8 @@
1
#include <stdio.h>
2
3
int main(void) {
4
- printf("hello, world\c"); /*prints warning: unknown escape sequence '\c' */
+ printf("hello, world\c");
5
return 0;
6
}
7
+
8
+// prints warning: unknown escape sequence '\c'
0 commit comments