Tuesday, 25 August 2020

HOW TO CONVERT CENTIMETER TO METER USING C PROGRAM?

THE FOLLOWING PROGRAM EXPLAINS HOW TO CONVERT METER TO CENTIMETER USING C PROGRAM.

#include<stdio.h>
#include<conio.h>
void main()
{
float a,b;
clrscr();
printf("Enter the meter to convert into centimeter\n");
scanf("%f",&a);
b=a/100;
printf("Meter is %f",b);
getch();
}    


No comments:

Post a Comment

C Programming

What is DBMS in brief?

A Database Management System (DBMS) is a software suite designed to efficiently manage, organize, store, manipulate, and retrieve data. It a...