Skip to main content

Posts

Showing posts with the label fahrenheit

Featured Post

Data Mining with Weka -Installation

Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka  You can download Weka from   here   and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.

C - Program (Sequence) - Convert Temperature

2.Write a program to convert temperature in fahrenheit (F) into antigrade (c) [F = 1.8c + 32]. #include <stdio.h> #include <conio.h> void main () {   int f;   float c;   printf ("\ n Enter the temperature in Fahrenheit:");   scanf ("% d", & f);   c = (f-32) /1.8;   printf ("\ n Temperature in antigrade is:% f", c);   getch (); }