C Program to find sum of two numbers
C Program to find sum of two numbers#include<stdio.h>int main(){ int a, b, sum; printf("\nEnter two no: "); scanf("%d %d", &a, &b); sum = a + b; printf("Sum : %d", sum); r...
// To convert temperature in Celcius to Fahrenheit scale.
#include <stdio.h>
#include <conio.h>
int main()
{
float dc, fer;
printf("Enter temperature in Degree Celcious ");
scanf("%f", &dc);
fer = (dc*1.8)+32;
printf("Converted temperaturein Farenheit = %f",fer);
return 0;
}