Previous Program »» C Program for Addition of 2 Numbers
Here we will write a Program in C Language to calculate the answer according to the specific formula
Here the formula I have used is e=(a*b)/(c-d)
So, the coding goes like this:-
For further Knowledge and Tutorial Keep Visiting :-
TechJatt - The source for all kind of Tutorial on Ethical Hacking
Like Us on Facebook or Follow on Twitter or Add to Circles on Google + to remain updated
Here we will write a Program in C Language to calculate the answer according to the specific formula
Here the formula I have used is e=(a*b)/(c-d)
So, the coding goes like this:-
#include <stdio.h>Next Program»» C Program to compare 2 numbers
#include <conio.h>
void main()
{
clrscr();
int=a,b,c,d,e;
printf("Enter 4 numbers: ");
scanf("%d %d %d %d",&a,&b,&c,&d);
e=(a*b)/(c-d);
printf("The solution is = %d",e);
getch();
}
For further Knowledge and Tutorial Keep Visiting :-
TechJatt - The source for all kind of Tutorial on Ethical Hacking
Like Us on Facebook or Follow on Twitter or Add to Circles on Google + to remain updated