C - Easy Problems

Hello World
Write a program to print 'Hello, World!' to the console....
Swap Two Numbers
Write a program to swap two numbers without using a temporary variable....
Check Prime Number
Write a program to check if a number is prime or not....
Factorial Calculation
Write a program to find the factorial of a number....
Reverse a String
Write a program to reverse a string....
Sum of Digits
Write a program to calculate the sum of digits of a number....
Check Palindrome Number
Write a program to check if a number is a palindrome....
Armstrong Number
Write a program to check if a number is an Armstrong number. An Armstrong number is one where the su...
Fibonacci Series
Write a program to generate the Fibonacci series up to n terms....
GCD (Greatest Common Divisor)
Write a program to find the GCD (Greatest Common Divisor) of two numbers....
LCM (Least Common Multiple)
Write a program to find the LCM (Least Common Multiple) of two numbers....
Count Vowels and Consonants
Write a program to count the number of vowels and consonants in a string....
Binary to Decimal Conversion
Write a program to convert a binary number to decimal....
Decimal to Binary Conversion
Write a program to convert a decimal number to binary....
Find Maximum and Minimum in an Array
Write a program to find the maximum and minimum elements in an array....
Linear Search
Write a program to implement linear search to find an element in an array....
Binary Search
Write a program to implement binary search to find an element in a sorted array....
Bubble Sort
Write a program to implement bubble sort to sort an array in ascending order....
Selection Sort
Write a program to implement selection sort to sort an array in ascending order....
Insertion Sort
Write a program to implement insertion sort to sort an array in ascending order....
Pattern Printing - Pyramid
Write a program to print a pyramid pattern of stars....
Pattern Printing - Inverted Pyramid
Write a program to print an inverted pyramid pattern of stars....
Pattern Printing - Number Triangle
Write a program to print a triangle pattern of numbers....
Pattern Printing - Floyd's Triangle
Write a program to print Floyd's triangle....
Pattern Printing - Pascal's Triangle
Write a program to print Pascal's triangle....
Check Leap Year
Write a program to check if a year is a leap year....
Calculate Power
Write a program to calculate the power of a number (x^y)....
Calculate Area of Shapes
Write a program to calculate the area of different shapes (circle, rectangle, triangle)....
Simple Calculator
Write a program to perform basic arithmetic operations (addition, subtraction, multiplication, divis...
Check Even or Odd
Write a program to check if a number is even or odd....
Find Largest of Three Numbers
Write a program to find the largest of three numbers....
Check Positive or Negative
Write a program to check if a number is positive, negative, or zero....
Calculate Simple Interest
Write a program to calculate simple interest....
Calculate Compound Interest
Write a program to calculate compound interest....
Calculate Average
Write a program to calculate the average of numbers in an array....
Calculate Area and Perimeter of Rectangle
Write a program to calculate the area and perimeter of a rectangle....
Calculate Area and Circumference of Circle
Write a program to calculate the area and circumference of a circle....
Check if a Character is a Digit
Write a program to check if a character is a digit....
Check if a Character is an Alphabet
Write a program to check if a character is an alphabet....
Check if a Character is Uppercase or Lowercase
Write a program to check if a character is uppercase or lowercase....
Calculate the Area of a Triangle (Given Base and Height)
Write a program to calculate the area of a triangle given its base and height....
Calculate the Volume of a Cube
Write a program to calculate the volume of a cube....
Calculate the Volume of a Sphere
Write a program to calculate the volume of a sphere....
Calculate the Surface Area of a Cube
Write a program to calculate the surface area of a cube....
Calculate the Surface Area of a Sphere
Write a program to calculate the surface area of a sphere....
Convert Celsius to Fahrenheit
Write a program to convert Celsius to Fahrenheit....
Convert Fahrenheit to Celsius
Write a program to convert Fahrenheit to Celsius....
Calculate the Area of a Square
Write a program to calculate the area of a square....
Calculate the Perimeter of a Square
Write a program to calculate the perimeter of a square....
Print ASCII Value of a Character
Write a program to print the ASCII value of a character....