Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn C programming concepts. You can learn C language at your own speed and time. One can learn concepts of C language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

Write a C program to Convert feet to meter
PROGRAM: Convert feet to meter
/* convert feet to meter */
#include<stdio.h>
int main()
{
float m,f;
printf(“Type feet : “);
scanf(“%f”,&f);
m = f / 3.2808399;
printf(“meter: %f”,m);
return 0;
}