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 the role you expect in software industry?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
Write a program to generate prime factors of a given integer?
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.
What is operator promotion?
What is the use of getch ()?
The difference between printf and fprintf is ?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is the difference between call by value and call by reference in c?