

C program to find maximum among 3 numbers using nested if
Write a C program to accept 3 numbers from the user. Find maximum among 3 numbers using nested-if statement.
C program to convert seconds into hours, minutes and seconds
Write a C program to accept number of seconds and display its corresponding hours, minutes and seconds.
C++ Program to Find Area using Function Overloading
Write a C++ program to calculate or find area of circle, rectangle and square using function overloading.
C Program to find the average temperature of five sunny days
Write a C program to find the average temperature of five sunny days. Assume the temperature in Celsius.
C Program to find modular division by 2, 3 and 4
Write a program to enter a number and carry out modular division operation by 2, 3 & 4 and display the remainders.
C Program to find the smallest number using Conditional Operator
Write C program to enter two numbers and find the smallest out of them using conditional operator.
Convert Integer into Octal and Hexadecimal formats
Write a C program that accepts an integer and displays that value in octal and hexadecimal formats.
C Program to Swap Two Numbers
Write a program to store and interchange/swap two numbers in variables a and b.