commit b86f82d44980e4b86afdfd9d9ccee9d1a958d412
parent 8446b7841dd3bf562eac9a70a4fe18618186d636
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Tue, 2 Dec 2025 11:49:06 +0530
delete -02122025 .\practice-c\pc012, 013
Diffstat:
2 files changed, 0 insertions(+), 21 deletions(-)
diff --git a/practice-c/pc012.c b/practice-c/pc012.c
@@ -1,10 +0,0 @@
-#include<stdio.h>
-
-int main()
-{
- int i;
- int arr[] = {1, 2, 3} ;
- for(i = 0; i < 5; i++)
- printf("%d ", arr[i]);
- return 0;
-}-
\ No newline at end of file
diff --git a/practice-c/pc013.c b/practice-c/pc013.c
@@ -1,9 +0,0 @@
-#include <stdio.h>
-//just maintaining the streak
-int main() {
- char name[50];
- printf("Enter your name: ");
- fgets(name, sizeof(name), stdin); // Read from standard input (keyboard)
- printf("Hello, %s", name); // Prints the name with the newline if entered
- return 0;
-}-
\ No newline at end of file