1. Simple Question
- Write a program to find Area and Circumference of a Circle.
- Write a program to find Area of Triangle.
- Write a program to find Simple Interest of a fixd money.
- Write a program to find Gross Salary of an Employee.
- Write a program to find Percentage of 5 Subjects.
- Write a program to convert Temperature Celsius into Fahrenheit.
- Write a program to find Factorial of a Given Number.
- Write a program where Read Integer (N) and Print the First Three Powers (N^1, N^2, N^3).
- Write a program to find LCM of Two Numbers.
- Write a program to find GCD of Two Numbers.
2. Using If / Else Statement
- Write a program to find The Greatest Number Among the Given Three Number.
- Write a program to find The given Number Is Positive or Negative.
- Write a program to find the Character Is Vowel or Consonant.
- Write a program to find the given Character Is an Alphabet or Not.
- Write a program to chake the given character is Uppercase, Lowercase, Special Character, or Digit.
- Write a program to chake the given number is Positive or Negative.
- Write a program to chake the given number is Even or Odd.
- Write a program to find the Greatest Number out of Two.
- Write a program to find The Greatest Number Out of three.
- Write a program to find The given Year is Leap Year or not.
- Write a program to Chake the Date Is Correct Or Not.
- Write a program to chake the Given Character is Vowel or Consonent.
- Write a program to find the number of days of Given Munth.
- Write a program to find the Triangle is valid or not (By its angles).
- Write a program to Chake the Tringle is valid or not (By its sides).
LOOPS :-
3. While Loop or While-Do Loop Questions
- Write a program to find The reverse number of a inputed number.
- Write a program to check The inputed number is armstrong or not.
- Write a program to calculate the sum of a natural number.
- Write a program to display fibonacci series up to range.
- Write a program to find LCM (Least Common Multiple) of two number.
- Write a program to check a number is palindrom or not.
- Write a program which will count number of digits of an Integer.
- Write a program to print a calender taking input from user using loop.
- Write a program to print the number upto range which will divisible bu 11.
4. For Loop Questions
- Write a program to find GCD (Greatest Common Divisor) of two number.
- Write a program to sort a float array in ascending and descending order.
- Write a program to display multiplication table of any inputed number.
5. Switch Case
- Write a program to find the day of a inputed date.
- Write a program to find Grade of a inputed marks.
- Write a program to remove all vowels from a string.
- Write a program to make a calculator by using switch case.
- Write a program to find Radius, Circumference and Volume of Cylinder .
- Write a program to Print total number of days in a month using switch case.
- Write a program to Check whether an alphabet is a vowel or consonant using switch case.
- Write a program to find the maximum between two numbers using switch case.
- Write a program to Check whether a number is even or odd using switch case.
- Write a program to Check whether a number is positive, negative or zero using switch case.
6. pattern print
7. Array Questions
- Write a program to Insert An Element Desired or Specific Position In An Array.
- Write a program to Remove Duplicates Items In An Array.
- Write a program to Delete Element From Array At Desired Or Specific Position.
- Write a program to Print “I AM IDIOT” Instead Of Your Name Using Array.
- Write a program to Check String Is Palindrome Or Not Using For Loop.
- Write a program to Convert All Input String Simultaneously Into Asterisk ( * ).
- Write a program to Read and print elements of the array. - using recursion.
- Write a program to Print all negative elements in an array.
- Write a program to Sum of all array elements. - using recursion.
- Write a program to Find a maximum and minimum element in an array. - using recursion.
- Write a program to Get the second largest element in an array.
- Write a program to Count the total number of even and odd elements in an array.
- Write a program to Count total number of negative elements in an array.
- Write a program to Copy all elements from an array to another array.
- Write a program to Insert an element in an array.
- Write a program to Delete an element from an array at the specified position.
- Write a program to Print all unique elements in the array.
- Write a program to Count the total number of duplicate elements in an array.
- Write a program to Delete all duplicate elements from an array.
- Write a program to Merge two arrays to the third array.
- Write a program to Find reverse of an array.
- Write a program to Put even and odd elements of an array in two separate arrays.
- Write a program to Search an element in an array.
- Write a program to Sort even and odd elements of the array separately.
8. String Questions
- Write a program to String Char-Case Change.
- Write a program to A String is Palindrome or Not.
- Write a program to A String Is an Anagram or Not.
- Write a program to Find the length of a string.
- Write a program to Copy one string to another string.
- Write a program to Concatenate two strings.
- Write a program to Compare two strings.
- Write a program to Convert lowercase string to uppercase.
- Write a program to Convert uppercase string to lowercase.
- Write a program to Find a total number of alphabets, digits or special character in a string.
- Write a program to Count total number of vowels and consonants in a string.
- Write a program to Count total number of words in a string.
- Write a program to Find reverse of a string.
- Write a program to Check whether a string is a palindrome or not.
- Write a program to Reverse order of words in a given string.
- Write a program to Find the last occurrence of a character in a given string.
- Write a program to Find the first occurrence of a character in a given string.
- Write a program to Search all occurrences of a character in a given string.
- Write a program to Count occurrences of a character in a given string.
- Write a program to Find highest frequency character in a string.
- Write a program to Remove the first occurrence of a character from a string.
- Write a program to Remove the last occurrence of a character from a string.
- Write a program to Delete all occurrences of a character from a string.
- Write a program to Remove all repeated characters from a given string.
- Write a program to Replace the first occurrence of a character with another in a string.
- Write a program to Replace the last occurrence of a character with another in a string.
- Write a program to Put all occurrences of a character with another in a string.
- Write a program to Find the first occurrence of a word in a given string.
- Write a program to Find the last occurrence of a word in a given string.
- Write a program to Search all occurrences of a word in a given string.
- Write a program to Delete all occurrence of a word in a given string.
- Write a program to A Trim leading white space characters from a given string.
- Write a program to Trim trailing white space characters from a given string.
- Write a program to Remove all extra blank spaces from the given string.
9. Function Questions
- Write a program to Cube of any number using the function.
- Write a program to Find diameter, circumference and area of a circle using functions.
- Write a program to Maximum and minimum between two numbers using functions.
- Write a program to Check whether a number is even or odd using functions.
- Write a program to Check whether a number is prime, Armstrong or perfect number using functions.
- Write a program to Find all prime numbers between the given interval using functions.
- Write a program to Print all strong numbers between the given interval using functions.
- Write a program to Armstrong numbers between the given interval using functions.
- Write a program to Print all perfect numbers between the given interval using functions.
- Write a program to Find the power of any number using recursion.
- Write a program to Print all natural numbers between 1 to n using recursion.
- Write a program to Print all even or odd numbers in given range using recursion.
- Write a program to Sum of all natural numbers between 1 to n using recursion.
- Write a program to Find the sum of all even or odd numbers in a given range using recursion.
- Write a program to Find reverse of any number using recursion.
- Write a program to Check whether a number is a palindrome or not using recursion.
- Write a program to Find the sum of digits of a given number using recursion.
- Write a program to Find factorial of any number using recursion.
- Write a program to Generate nth Fibonacci term using recursion.
- Write a program to Find lcm and gcd (HCF) of two numbers using recursion.
- Write a program to Display all array elements using recursion.
- Write a program to Find the sum of elements of the array using recursion.
- Write a program to Find maximum and minimum elements in an array using recursion.
10. Pointer Questions
- Write a program to Add two numbers using pointers.
- Write a program to Swap two numbers using pointers.
- Write a program to Input and print array elements using a pointer.
- Write a program to Copy one array to another using pointer.
- Write a program to Swap two arrays using pointers.
- Write a program to Reverse an array using pointers.
- Write a program to Search an element in an array using pointers.
- Write a program to Access two-dimensional array using pointers.
- Write a program to Add two matrix using pointers.
- Write a program to Multiply two matrix using pointers.
- Write a program to Find the length of string using pointers.
- Write a program to In short How to Copy one string to another using pointer.
- Write a program to Concatenate two strings using pointers.
- Write a program to Compare two strings using pointers.
11. Sorting
- Bubble Sort in C.
- Bucket or Radix Sort in C.
- Shell Sort in C.
- Merge Sort in C.
- Heap Sort in C.
- Selection Sort in C.
- Insertion Sort in C.
12. Searching














