From 5bdbad1aa0f9ad690a783919df31aa78e5fac085 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Fri, 4 Nov 2022 21:07:36 +0300 Subject: [PATCH] Add a newline to example.c --- sources/c/example/example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/c/example/example.c b/sources/c/example/example.c index 238dfb0..28cb9ce 100644 --- a/sources/c/example/example.c +++ b/sources/c/example/example.c @@ -2,7 +2,7 @@ int main() { for (int i = 0; i < 10; i++) { - printf("Example"); + printf("Example\n"); } return 0; }