From e6f2400ee45b8aba4306839f4377c66bf042fe73 Mon Sep 17 00:00:00 2001 From: cypher182 <55956933+cypher182@users.noreply.github.com> Date: Tue, 1 Oct 2019 19:07:41 +0530 Subject: [PATCH 1/2] Create helloworld --- mozill2/helloworld | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 mozill2/helloworld diff --git a/mozill2/helloworld b/mozill2/helloworld new file mode 100644 index 0000000..e45ebc9 --- /dev/null +++ b/mozill2/helloworld @@ -0,0 +1,5 @@ +#include +void main() +{ +printf("hello world"); +} From 6ea78a21bef7c5166ff1981fdd4b21fe104adf29 Mon Sep 17 00:00:00 2001 From: cypher182 <55956933+cypher182@users.noreply.github.com> Date: Tue, 1 Oct 2019 19:13:38 +0530 Subject: [PATCH 2/2] Create maximum --- mozilla3/maximum | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mozilla3/maximum diff --git a/mozilla3/maximum b/mozilla3/maximum new file mode 100644 index 0000000..acb4069 --- /dev/null +++ b/mozilla3/maximum @@ -0,0 +1,11 @@ +#include +void main() +{ +int a,b,n; +printf("enter the number n"); +scanf("%d",&n); +if(a>b) +printf("a is greater than b"); +else; +printf("b is grater"); +}