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
- Host: GitHub
- URL: https://github.com/sandyg6/c-programming
- Owner: sandyg6
- Created: 2023-04-12T13:57:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-25T04:09:59.000Z (over 1 year ago)
- Last Synced: 2025-01-20T12:33:26.976Z (11 months ago)
- Topics: arrays, cprogramming, cprogramming-language, filehandling, pointers, programming, programming-language, structures
- Language: C
- Homepage:
- Size: 161 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)