We Post only the Best Stuff

C Program for specific formula

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:-
#include <stdio.h>
#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();
}
Next Program»» C Program to compare 2 numbers

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
Support : Contact Us | Privacy Policy | Site Map
Copyright © 2013. Tech Jatt - All Rights Reserved
Site Design by Nitin Kundu Licensed to Tech Jatt
Proudly powered by Blogger