From 13cb458c7b5338b386d6a95f12b20f40f876b443 Mon Sep 17 00:00:00 2001 From: loshprung Date: Wed, 8 Jan 2020 12:32:26 -0800 Subject: deleted unnecesary files --- a.exe | Bin 66035 -> 0 bytes color_test.c | 17 ----------------- func_practice_1.c | 10 ---------- github_help.txt | 1 - 4 files changed, 28 deletions(-) delete mode 100644 a.exe delete mode 100644 color_test.c delete mode 100644 func_practice_1.c delete mode 100644 github_help.txt diff --git a/a.exe b/a.exe deleted file mode 100644 index 3d26dd9..0000000 Binary files a/a.exe and /dev/null differ diff --git a/color_test.c b/color_test.c deleted file mode 100644 index 60b0b93..0000000 --- a/color_test.c +++ /dev/null @@ -1,17 +0,0 @@ -#include - -int main(){ - printf("\033[0;31m"); - printf("Red\n"); - printf("\033[1;31m"); - printf("Bold Red\n"); - printf("\033[0;32m"); - printf("Green\n"); - printf("\033[1;32m"); - printf("Bold Green\n"); - printf("\033[0;30m"); - printf("\033[47m"); - printf("???\n"); - - return 0; -} diff --git a/func_practice_1.c b/func_practice_1.c deleted file mode 100644 index 4af6fe4..0000000 --- a/func_practice_1.c +++ /dev/null @@ -1,10 +0,0 @@ -#include - -int sum(int[]); - -int main(){ - int my_num[] = {1, 2, 3}; - printf("The total is : %d", sum(my_num)); -} - -int sum(int x[]) diff --git a/github_help.txt b/github_help.txt deleted file mode 100644 index 55f7df3..0000000 --- a/github_help.txt +++ /dev/null @@ -1 +0,0 @@ -to sign out of account: git credential-manager delete https://github.com -- cgit