From c6900010042fad9a9825fd731e88d262b675d73b Mon Sep 17 00:00:00 2001 From: anileshk123 <43809146+anileshk123@users.noreply.github.com> Date: Tue, 29 Sep 2020 10:06:06 +0530 Subject: [PATCH 1/3] Create Anilesh K --- students/Anilesh K | 1 + 1 file changed, 1 insertion(+) create mode 100644 students/Anilesh K diff --git a/students/Anilesh K b/students/Anilesh K new file mode 100644 index 00000000..07883660 --- /dev/null +++ b/students/Anilesh K @@ -0,0 +1 @@ +Try From 33932cfe2e59ba5f735b0759333e3726c81e4d90 Mon Sep 17 00:00:00 2001 From: ForAjce <72437094+ForAjce@users.noreply.github.com> Date: Tue, 6 Oct 2020 16:44:51 +0530 Subject: [PATCH 2/3] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 05dd02c2..0341ba2a 100644 --- a/index.html +++ b/index.html @@ -30,7 +30,7 @@ First slide - + scsxsXSXSCsCszc

Hacktoberfest Open Hack Day


@@ -84,4 +84,4 @@

Age

- \ No newline at end of file + From faceb4dbff2f1fa1706d61fcf462ff0b0d818032 Mon Sep 17 00:00:00 2001 From: csajce <72405873+csajce@users.noreply.github.com> Date: Wed, 20 Oct 2021 20:39:11 +0530 Subject: [PATCH 3/3] ad --- inp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 inp.c diff --git a/inp.c b/inp.c new file mode 100644 index 00000000..907a4197 --- /dev/null +++ b/inp.c @@ -0,0 +1,14 @@ +#include +int main() { + int number; + + printf("Enter an integer: "); + + // reads and stores input + scanf("%d", &number); + + // displays output + printf("You entered: %d", number); + + return 0; +}