In this post, we will see a C program to convert temperature from Celsius(°C) to Fahrenheit(°F) The program accepts the temperature value in °C  from user and convert its value equivalent to °F and display the result on the screen. Step 1: Start Step 2: Read the temperature value in Celcuis Step… Continue Reading C PROGRAM TO CONVERT TEMPERATURE (CELSIUS TO FAHRENHEIT)

C PROGRAM TO PRINT NUMBERS 1 TO N WITHOUT USING LOOPS

Sample Output :  

C PROGRAM TO PRINT THE ELEMENTS OF ARRAY IN REVERSE ORDER

Sample Output :

C PROGRAM TO FIND LARGEST AND SMALLEST NUMBER IN AN ARRAY original post

Sample Output :

C PROGRAM TO FIND LARGEST / BIGGEST NUMBER IN ARRAY

Explanation : The above program is to find the largest element in the given array of elements. Here we are using declaring the maximum size of array as 25 using #define directive . Sample Output :