write a program that will read the temperature in Celsius
and convert that into Fahrenheit.

Answer Posted / umed sharma

This is the easy answer

#include<stdio.h>
#include<conio.h>
void main()
{
float c,f;
printf("\n Enter temperature in celsius");
scanf("%f",&c);
f=(1.8 * c) + 32;
printf("\n temperature in fahrenheit is = %.2f",f);
getch();
}

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to print numbers from 1 to 100 without using loop in c?

644


How is null defined in c?

654


formula to convert 2500mmh2o into m3/hr

501


What does the error 'Null Pointer Assignment' mean and what causes this error?

743


Explain the difference between malloc() and calloc() function?

604






plz let me know how to become a telecom protocol tester. thank you.

1745


#include { printf("Hello"); } how compile time affects when we add additional header file .

1427


What is declaration and definition in c?

528


code for find determinent of amatrix

1521


console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

661


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

610


Explain how can type-insensitive macros be created?

572


Can you write the algorithm for Queue?

1558


What is extern keyword in c?

648


What are the key features in c programming language?

622