Tech Study

C Program to print convert feet to meter

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;
}

Result

C Program to print convert feet to meter
C Program to print convert feet to meter

TaggedC++ Program to print convert feet to meter

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more