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 are reserved words with a programming language?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
Is r written in c?
Program to find the absolute value of given integer using Conditional Operators
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is the function of volatile in c language?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
Explain what is the difference between far and near ?
biggest of two no's with out using if condition statement
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration