C is a basic programming language. C provides all basic features to develop any type of program. C is a very popular programming language and widely used programming language (C Solved Programs).
Let’s see different c solved programs which are categorized in a different section :
Basic C programs :
- Hello world in c
- Addition of two numbers
- Print 1 to 100 numbers.
- Print alphabets from A-Z
- Find odd and even number
- Print all odd numbers till N
- Swap numbers using third variable
- Swap numbers without using third variable
- Find given number leap year or not
- Convert given days to years,week and day
- Multiply two numbers without using multiplication operator
- Calculate gross salary from given basic pay
- Reverse the given number
- Check whether person is eligible for voting or not
Programs on Number :
- Find sum of all digits in number
- Factorial of given number
- Fibonacci-es series till N
- Sum of N numbers
- Check whether number is palindrome or not
- Check whether number is prime number or not
- Print all prime numbers till N
- Check number is Armstrong number or not
- Print Armstrong number between 1 to given number
- Check repeated number(digit) in given number
Mathematics Programs :
- Calculator program in c
- Calculate ares of different shapes
- Simple Interest program in c
- Find number of permutations and combination
- Compound Interest program in c
String :
- Check character is vowel or not
- Count number of vowels in string
- Find length of string without string function
- Count number of words in sentence
- Convert upper case to lower or lower to upper (one at a time)
- Convert upper case to lower and vice versa
- Compare two strings without string function
- Delete vowels from string
- Concatenate two strings without string function
- Find number of times letter repeated in sentence
- Find frequency of each character in string
- Count number of white spaces in string
- Check string is palindrome or not
- Reverse the string without string function
- C program to Sort names in alphabetical order
String library function :
- String palindrome using string function
- C program to compare two strings using string function.
- find length of string using string function
- Convert upper case to lower case and vice versa using string functions
- Reverse string program in c using string function
- Swap two strings using string library function
Conversion Programs :
- Fahrenheit to Celsius
- Infix to postfix
- Infix to prefix
- Decimal to binary
- Binary to decimal
- Decimal to octal
- Octal to decimal
- Celsius to Fahrenheit
- Fahrenheit to kelvin
- Binary to octal
- Octal to binary
Arrays
- Occurrences of word in string
- Average of numbers program in c
- Sum of negative and positive numbers
- Find minimum and maximum number in array
- Separate the even and odd number in array
- Insert element in array at specified position
- Reverse array in c
- Merge two arrays
- Sum of elements in array
- Find two largest numbers in array
Pointers
- Print values in variable using pointers
- Print address of variables using pointers
- Swap two numbers using pointers in c
- Copy string using pointers
- Length of string using pointers
- Calculate sum of array elements using pointers