coding-
#include<stdio.h>
#include<conio.h>
void main()
int a,b,c;
clrscr();
a=20;
b=10;
c=a*b;
printf("the multiply of c=%d\n",c);
c=a+b;
printf("the addition of c=%d\n",c);
c=a-b;
printf("the subtraction of c=%d\n",c);
c=a/b;
printf("the divide of c=%d\n",c);
c=a^+b^;
printf("the sum of power a and b of c=%d\n",c);
getch();
}
OUTPUT-
#include<stdio.h>
#include<conio.h>
void main()
int a,b,c;
clrscr();
a=20;
b=10;
c=a*b;
printf("the multiply of c=%d\n",c);
c=a+b;
printf("the addition of c=%d\n",c);
c=a-b;
printf("the subtraction of c=%d\n",c);
c=a/b;
printf("the divide of c=%d\n",c);
c=a^+b^;
printf("the sum of power a and b of c=%d\n",c);
getch();
}
OUTPUT-
Comments
Post a Comment
Please Subscribe and Comments my blog site.