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"); +} 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"); +}