From 8905e0d34cf10aa34f8003cfaa6ab3a080217dbe Mon Sep 17 00:00:00 2001 From: rusik1707 Date: Wed, 29 May 2024 02:41:46 +0400 Subject: [PATCH] =?UTF-8?q?Update=20and=20rename=20main.c=20to=20Update=20?= =?UTF-8?q?main.c=20to=20print=20=E2=80=98Hello=20School=E2=80=99=2032=20t?= =?UTF-8?q?imes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ... print \342\200\230Hello School\342\200\231 32 times" | 9 +++++++++ main.c | 9 --------- 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 "Update main.c to print \342\200\230Hello School\342\200\231 32 times" delete mode 100644 main.c diff --git "a/Update main.c to print \342\200\230Hello School\342\200\231 32 times" "b/Update main.c to print \342\200\230Hello School\342\200\231 32 times" new file mode 100644 index 0000000..a111ac6 --- /dev/null +++ "b/Update main.c to print \342\200\230Hello School\342\200\231 32 times" @@ -0,0 +1,9 @@ +#include + +int main() { + int i; + for (i = 0; i < 32; i++) { + printf("Hello School\n"); + } + return 0; +} diff --git a/main.c b/main.c deleted file mode 100644 index a9a0bdb..0000000 --- a/main.c +++ /dev/null @@ -1,9 +0,0 @@ -int main() -{ - int i; - for (i = 0; i < 10; i++) - { - printf("School\n"); - } - return 0; -}