From 8006f1b3f4004c7d53dc0641749df116b834e243 Mon Sep 17 00:00:00 2001 From: Dilkash Date: Wed, 26 Mar 2025 12:41:38 +0530 Subject: [PATCH 1/2] your commit changes --- heapsort.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heapsort.c b/heapsort.c index 3d1d0f4d..2716bdf2 100644 --- a/heapsort.c +++ b/heapsort.c @@ -4,12 +4,12 @@ void main() { int heap[10], no, i, j, c, root, temp; - printf("\n Enter no of elements :"); + printf("\n Enter the numberss :"); scanf("%d", &no); printf("\n Enter the nos : "); for (i = 0; i < no; i++) scanf("%d", &heap[i]); - for (i = 1; i < no; i++) + for (i = 2; i < no; i++) { c = i; do From 2a183de2982890bb463c3e1342440ed691e00899 Mon Sep 17 00:00:00 2001 From: Dilkash Date: Wed, 26 Mar 2025 13:11:57 +0530 Subject: [PATCH 2/2] Added --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..fcff60d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.log -> Ignore all log files. +node_modules/ -> Ignore node_modules directory. +*.env -> Ignore environment configuration files.