write a c program to do the following:
a) To find the area of a triangle.
b) To convert the temperature from Fahrenheit to Celsius.
c) To convert the time in hours : minutes : seconds to
seconds.
No Answer is Posted For this Question
Be the First to Post Answer
what is diff b/w huge & far & near pointer??
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Why is structure padding done in c?
how to swap four numbers without using fifth variable?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
program in c to print 1 to 100 without using loop
1 1 12 21 123 321 12344231 how i creat it with for loop??
How variables are declared in c?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
When do we get logical errors?
To what value do nonglobal variables default? 1) auto 2) register 3) static
Explain spaghetti programming?