Sunday, January 11, 2015

MEASUREMENT CONVERSION

#include<stdio.h> main()

{
int mm,m;

printf("Enter the Millimeter\n"); scanf("%d",&mm); m=mm*1000;

printf("The Converted meter is %d",m);

}

OUTPUT:

Enter the Millimeter 12

The Converted meter is 12000

No comments:

Post a Comment