From 52a8c332d87617f9e0ec59c6b81aad93afb1c220 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Mon, 13 Apr 2015 18:33:35 +0200 Subject: [PATCH] printf we learn like this to do hello world --- c/c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/c.c b/c/c.c index e4b9a421..e4a8f332 100644 --- a/c/c.c +++ b/c/c.c @@ -1,6 +1,6 @@ #include int main() { - puts("Hello World"); + printf("Hello World"); return 0; }