write a program that will read the temperature in Celsius
and convert that into Fahrenheit.
Answer / 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 |
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
Why is it usually a bad idea to use gets()? Suggest a workaround.
what are bps & baud rates? differentiate these two?
How can I set an array's size at run time?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
from which concept of 'c', the static member function of 'c++' has came?
What is the total generic pointer type?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Difference between MAC vs. IP Addressing
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789