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

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

C Programming Experiments
https://github.com/roatienza/c-programming

c c-language c-programming

Last synced: 3 months ago
JSON representation

C Programming Experiments

Awesome Lists containing this project

README

        

# C-Programming
Lecture Notes

- [Algorithms](https://docs.google.com/presentation/d/1Y-FXok6onmOYvDZDfOpTj-wajzji86oMZyCvd1aHYbE/edit?usp=sharing)
- [Overview](https://docs.google.com/presentation/d/1VUi42iNy0F3pRxEoeYvlNX8JHIPXUb5ss_lTK-42dlE/edit?usp=sharing)
- [Data Types](https://docs.google.com/presentation/d/1yOZie5LWAklvj0LWVjnMLAe1eTl0uPTGYtwI5Zu789Q/edit?usp=sharing)
- [Loops and Functions](https://docs.google.com/presentation/d/1WGf0GhBuhJVjZI0-lGBGvQbAmP7dgd19TOmHPvwFAbc/edit?usp=sharing)
- [Bitwise, Standard Lib, Modularity](https://docs.google.com/presentation/d/1azyitLDQQa09fiw_ZY7OYNKhQlccZmhT0lraOzRHIUc/edit?usp=sharing)
- [Number Representation](https://docs.google.com/presentation/d/1pNffFiqfGUQcG1vPPbQHLuRgIuJpor1Nkdqpa2azNxU/edit?usp=sharing)
- [Arrays and Strings](https://docs.google.com/presentation/d/1OZiyxoZ46AjisSQh2okAiJfQNSIU8XZSNnGtfznABzY/edit?usp=sharing)
- [Multi-dimensional Arrays](https://docs.google.com/presentation/d/13C6UPwp73lfR_mE30D1JQFbAD_V2UKeJXUjRU7FlVBU/edit?usp=sharing)
- [Structures](https://docs.google.com/presentation/d/1JIRJNm_05NqvYdSRMHxw4GeTSX4Dslu6v8kiArwZpRk/edit?usp=sharing)
- [Pointers](https://docs.google.com/presentation/d/1abaqCe8OnuY4nUKfmi_bIYBE0RcNgbulWWJZ3x_4mDo/edit?usp=sharing)
- [More Pointers](https://docs.google.com/presentation/d/1VlquePbB7FDdMvzBzrX_5Hg9bGcdwQPJw-CdCkxMj1M/edit?usp=sharing)
- [File IO](https://docs.google.com/presentation/d/1-QCzpy_Ak4pfECltIYvGC-rPyGn6SCCkqlRCBd_HwNM/edit?usp=sharing)
- [Fundamental Data Structures](https://docs.google.com/presentation/d/1cgxlpZ-K2lair7tzghiBva7eyz6zwxFGAwA_EUUC5RE/edit?usp=sharing)

C Programming Experiments

1. Experiments
- [Experiment 1: Stair steps pattern](Experiments/Stairs/README.md)
- [Experiment 2: Wave pattern](Experiments/Wave/README.md)
- [Experiment 3: Square](Experiments/Square/README.md)
- [Experiment 4: Number to Words](Experiments/Number2Words/README.md)
- [Experiment 5: SMS Text](Experiments/SMS/README.md)
- [Experiment 6: HTML Decoder](Experiments/HTMLDecoder/README.md)
- [Experiment 7: CSV Parser](Experiments/CSVParsing/README.md)
- [Experiment 8: Pointer Arithmetic](Experiments/PointerArithmetic)

2. [Machine Problem: Numerical Integration](Machine%20Problem/README.md)