PROGRAM FOR CONVERTING TEMPERATURE

#include<stdio.h> #include<conio.h> void main() {   int c;   float f;   clrscr();   printf("enter c value&q...

#include<stdio.h>
#include<conio.h>
void main()
{
  int c;
  float f;
  clrscr();
  printf("enter c value");
  scanf("%d",&c);
  f=1.8*c+32.0;
  printf("\n temperature is %f",f);
  getch();
}



OUT PUT:

temperature

Related

C Programs 7297108772748156331

Post a Comment

emo-but-icon

item