Introduction
C Program to convert celcius to farenheit. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
C Program to convert celcius to farenheit. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include <stdio.h>
int main()
{
float celsius, fahrenheit;
printf("\nEnter Temperature in Celsius : ");
scanf("%f", &celsius);
fahrenheit = (1.8 * celsius) + 32; // Formula to caltulate Celsius to Fahrenheit
printf("\nTemperature in Fahrenheit : %f ", fahrenheit);
return 0;
}
Write a C program to print sum of digits enter by user
C program to convert string to lower case
Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …
C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …