From 552757f0abca4aff9af09d1456673996873f91c3 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 10 Apr 2025 03:01:17 +0100 Subject: Actually use print function. * hello-world-with-multiple-source-files/hello.c (main): Call print instead of printf. --- hello-world-with-multiple-source-files/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hello-world-with-multiple-source-files') diff --git a/hello-world-with-multiple-source-files/hello.c b/hello-world-with-multiple-source-files/hello.c index 17b896e..d1caa21 100644 --- a/hello-world-with-multiple-source-files/hello.c +++ b/hello-world-with-multiple-source-files/hello.c @@ -2,6 +2,6 @@ int main () { - printf("Hello world!\n"); + print(); return 0; } -- cgit v1.2.3