Write a program to calculate the mass of air in Automobile tire
/*A program to calculate the mass of air in automobile tire
programmed by
name: Jitendra yadav
roll: 16 */
#include <stdio.h>
#include <conio.h>
void main()
{
int V,m,T,P;
printf(“Enter the pressure of a tire:”);
scanf(“%d”,&P);
printf(“Enter the Volume of air in the tire:”);
scanf(“%d”,&V);
printf(“Enter the temperature of air in the tire:”);
scanf(“%d”,&T);
m=(P*V)/(0.37*(T+460));
printf(“The mass of air in Automobile tire is: %d”,m);
getch();
}








