(C program to find Arithmetic equation)
This is a C program to find the Arithmetic equation
(Problem Discription)
This C program find Arithmetic equation
(Program/Coding)
#include<studio.h>
#include<conio.h>
Void main()
{
int a, b, c;
Clrscr ();
a=20; (Any number your choice)
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();
}
...............................................….....................
Amar Singh sisodiya
This is a C program to find the Arithmetic equation
(Problem Discription)
This C program find Arithmetic equation
(Program/Coding)
#include<studio.h>
#include<conio.h>
Void main()
{
int a, b, c;
Clrscr ();
a=20; (Any number your choice)
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();
}
...............................................….....................
Amar Singh sisodiya
Comments
Post a Comment
Please Subscribe and Comments my blog site.