A repository dedicated to mastering the C programming language. This space is designed for storing well-structured C codes and detailed notes to help understand and explore the language's intricacies.
🚀 Starting date :
01-January-2025
🏆 Target date :31 - January - 2025
Master the C language to such an extent that writing highly complex systems feels ease.
+
Writing super clean code.
+
Writing highly optimized code.
+
Writing easy to maintain code.
Functions - camelCase
Function Parameters - smallcase starting with '__'
Local Variables - lowercase
Immutable global variables - UPPER_CASE
Mutable global Variables - UPPER_CASE ending with '__'
typedef/structs/types - PascalCase
struct members - smallcase starting with underscore
File names - Capitalized seperated by underscore