Introduction
C Program to print convert feet to meter. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include<stdio.h> int main() { float meter,feet; printf("Enter feet : "); scanf("%f",&feet); meter = feet / 3.2808399; printf("meter: %f",meter); return 0; }
M = ft x 0.3048
it is the formula to convert the feet to meter.
Thank uhhhh………!