An open API service indexing awesome lists of open source software.

https://github.com/sandyg6/c-programming

C Programming
https://github.com/sandyg6/c-programming

arrays cprogramming cprogramming-language filehandling pointers programming programming-language structures

Last synced: 3 months ago
JSON representation

C Programming

Awesome Lists containing this project

README

          

# C-Programming
C Programs
1. To swap two characters using user defined functions [code](https://github.com/sandyg6/C-Programming/blob/main/swapping.c)
2. To reverse the digits of a five digit number [code](https://github.com/sandyg6/C-Programming/blob/main/reverse.c)
3. To swap the values using bitwise operators [code](https://github.com/sandyg6/C-Programming/blob/main/swap.c)
4. To convert fahrenheit to celcius temperature [code](https://github.com/sandyg6/C-Programming/blob/main/temperature.c)
5. To calculate the sum of digits of a number [code](https://github.com/sandyg6/C-Programming/blob/main/sum.c)
6. To print even numbers using continue statement [code](https://github.com/sandyg6/C-Programming/blob/main/even.c)
7. To find the factorial of a given number [code](https://github.com/sandyg6/C-Programming/blob/main/fact.c)
8. To print the square of integers using for loop [code](https://github.com/sandyg6/C-Programming/blob/main/square.c)
9. To find the average of positive numbers using continue statement [code](https://github.com/sandyg6/C-Programming/blob/main/navg.c)
10. To find out the square root of the numbers [code](https://github.com/sandyg6/C-Programming/blob/main/sqrt.c)
11. To copy the content of the string without using string function [code](https://github.com/sandyg6/C-Programming/blob/main/copy.c)
12. To find the maximum of four integers using functions [code](https://github.com/sandyg6/C-Programming/blob/main/max.c)

Simple Pattern Printing programs using c language [program](https://github.com/sandyg6/C-Programming/tree/main/Pattern%20Printing)

Arrays [programs](https://github.com/sandyg6/C-Programming/tree/main/Arrays)

Strings [programs](https://github.com/sandyg6/C-Programming/tree/main/Strings)