From 4257cde74db58e85b99a0a3ae82f54d4116d1949 Mon Sep 17 00:00:00 2001 From: jyotsana279 <73690777+jyotsana279@users.noreply.github.com> Date: Fri, 30 Oct 2020 19:50:27 +0530 Subject: [PATCH 1/2] Create pascalstriangle.c --- pascalstriangle.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pascalstriangle.c diff --git a/pascalstriangle.c b/pascalstriangle.c new file mode 100644 index 0000000..29809b2 --- /dev/null +++ b/pascalstriangle.c @@ -0,0 +1,19 @@ +#include +int main() { + int rows, coef = 1, space, i, j; + printf("Enter the number of rows: "); + scanf("%d", &rows); + for (i = 0; i < rows; i++) { + for (space = 1; space <= rows - i; space++) + printf(" "); + for (j = 0; j <= i; j++) { + if (j == 0 || i == 0) + coef = 1; + else + coef = coef * (i - j + 1) / j; + printf("%4d", coef); + } + printf("\n"); + } + return 0; +} From 8c28a6ae2219abaad78f3f0bae30f1b9cbe5917a Mon Sep 17 00:00:00 2001 From: jyotsana279 <73690777+jyotsana279@users.noreply.github.com> Date: Sat, 31 Oct 2020 15:35:01 +0530 Subject: [PATCH 2/2] Create loginform.html --- Codes/loginform.html | 61 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 Codes/loginform.html diff --git a/Codes/loginform.html b/Codes/loginform.html new file mode 100644 index 0000000..3e9e948 --- /dev/null +++ b/Codes/loginform.html @@ -0,0 +1,61 @@ + + + + Login Page + + + +

Student Login Form

+
+
+ + + + + + Remember me + + Forgot password? +
+
+ +