From 38d0b74e20089b0eb44deadb020068c5d9d7cdb1 Mon Sep 17 00:00:00 2001 From: Eric Schaefer Date: Sun, 29 Apr 2012 12:05:40 +0300 Subject: [PATCH] printf is overkill. Nothing to format in that string. puts() is better suited. --- c/c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/c.c b/c/c.c index 36465c8f..41113917 100644 --- a/c/c.c +++ b/c/c.c @@ -1,6 +1,6 @@ #include int main(void) { - printf("Hello World\n"); + puts("Hello World"); return 0; }