├── Bitwise Twiddling Tricks.c ├── Bitwise operators.c ├── C Headers.c ├── Common math.h functions.c ├── Environment - stdlib.c ├── Error Handling library.c ├── GCC COMMANDS.txt ├── Inside the stdio.h ├── LICENSE ├── Memory management - algorithms (stdlib).c ├── Preprocessor Directives.c ├── Structures, Unions and Enumerations.c ├── memory operations - string library.c ├── readme.md ├── sort using inbuild qsort - stdlib.c ├── standard limits of C.c ├── stdarg library explainations.c ├── string library functions.c ├── time.h and pseudo-random numbers.c ├── topics ├── Advanced Pointer Topic.c ├── C declarations - extern, static etc....c ├── Command Line Arguments.c ├── Insertion Sort - Important (for all data types).c ├── Linked List Functions Collection.c ├── Pointer Advanced.c ├── Variable length arrays (VLA).c ├── Wrong way to memory management in linked list.c ├── calculates the percentage of character.c ├── conversion specifier explained.c ├── delete substring from string (barebone) - Very important pointer concept.c ├── format Codes.c ├── function that reads a list of integers with dynamic allocated memory.c ├── good question for linked list [see Ch-10, Pointers on C, Ex-7].c ├── int_to_word conversion.c ├── linked list implementation [in ascending order].c ├── linked list[1st version- but not good].c ├── linked list[dirty method-but better for understanding].c ├── nested function in C[GCC extensions, only in GCC].c ├── newline trap.c ├── print tomorrow date (pointer version with structure).c ├── print tomorrow date (with structure and without pointer).c ├── putting commas in between dollar amount.c ├── sort a series of strings.c ├── understanding typedef operator in C.c ├── update time by one secon.c └── use of comma operator.c └── use of stdarg.h header.c /Bitwise Twiddling Tricks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Bitwise Twiddling Tricks.c -------------------------------------------------------------------------------- /Bitwise operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Bitwise operators.c -------------------------------------------------------------------------------- /C Headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/C Headers.c -------------------------------------------------------------------------------- /Common math.h functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Common math.h functions.c -------------------------------------------------------------------------------- /Environment - stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Environment - stdlib.c -------------------------------------------------------------------------------- /Error Handling library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Error Handling library.c -------------------------------------------------------------------------------- /GCC COMMANDS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/GCC COMMANDS.txt -------------------------------------------------------------------------------- /Inside the stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Inside the stdio.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/LICENSE -------------------------------------------------------------------------------- /Memory management - algorithms (stdlib).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Memory management - algorithms (stdlib).c -------------------------------------------------------------------------------- /Preprocessor Directives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Preprocessor Directives.c -------------------------------------------------------------------------------- /Structures, Unions and Enumerations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/Structures, Unions and Enumerations.c -------------------------------------------------------------------------------- /memory operations - string library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/memory operations - string library.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/readme.md -------------------------------------------------------------------------------- /sort using inbuild qsort - stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/sort using inbuild qsort - stdlib.c -------------------------------------------------------------------------------- /standard limits of C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/standard limits of C.c -------------------------------------------------------------------------------- /stdarg library explainations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/stdarg library explainations.c -------------------------------------------------------------------------------- /string library functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/string library functions.c -------------------------------------------------------------------------------- /time.h and pseudo-random numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/time.h and pseudo-random numbers.c -------------------------------------------------------------------------------- /topics/Advanced Pointer Topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Advanced Pointer Topic.c -------------------------------------------------------------------------------- /topics/C declarations - extern, static etc....c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/C declarations - extern, static etc....c -------------------------------------------------------------------------------- /topics/Command Line Arguments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Command Line Arguments.c -------------------------------------------------------------------------------- /topics/Insertion Sort - Important (for all data types).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Insertion Sort - Important (for all data types).c -------------------------------------------------------------------------------- /topics/Linked List Functions Collection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Linked List Functions Collection.c -------------------------------------------------------------------------------- /topics/Pointer Advanced.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Pointer Advanced.c -------------------------------------------------------------------------------- /topics/Variable length arrays (VLA).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Variable length arrays (VLA).c -------------------------------------------------------------------------------- /topics/Wrong way to memory management in linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/Wrong way to memory management in linked list.c -------------------------------------------------------------------------------- /topics/calculates the percentage of character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/calculates the percentage of character.c -------------------------------------------------------------------------------- /topics/conversion specifier explained.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/conversion specifier explained.c -------------------------------------------------------------------------------- /topics/delete substring from string (barebone) - Very important pointer concept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/delete substring from string (barebone) - Very important pointer concept.c -------------------------------------------------------------------------------- /topics/format Codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/format Codes.c -------------------------------------------------------------------------------- /topics/function that reads a list of integers with dynamic allocated memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/function that reads a list of integers with dynamic allocated memory.c -------------------------------------------------------------------------------- /topics/good question for linked list [see Ch-10, Pointers on C, Ex-7].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/good question for linked list [see Ch-10, Pointers on C, Ex-7].c -------------------------------------------------------------------------------- /topics/int_to_word conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/int_to_word conversion.c -------------------------------------------------------------------------------- /topics/linked list implementation [in ascending order].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/linked list implementation [in ascending order].c -------------------------------------------------------------------------------- /topics/linked list[1st version- but not good].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/linked list[1st version- but not good].c -------------------------------------------------------------------------------- /topics/linked list[dirty method-but better for understanding].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/linked list[dirty method-but better for understanding].c -------------------------------------------------------------------------------- /topics/nested function in C[GCC extensions, only in GCC].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/nested function in C[GCC extensions, only in GCC].c -------------------------------------------------------------------------------- /topics/newline trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/newline trap.c -------------------------------------------------------------------------------- /topics/print tomorrow date (pointer version with structure).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/print tomorrow date (pointer version with structure).c -------------------------------------------------------------------------------- /topics/print tomorrow date (with structure and without pointer).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/print tomorrow date (with structure and without pointer).c -------------------------------------------------------------------------------- /topics/putting commas in between dollar amount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/putting commas in between dollar amount.c -------------------------------------------------------------------------------- /topics/sort a series of strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/sort a series of strings.c -------------------------------------------------------------------------------- /topics/understanding typedef operator in C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/understanding typedef operator in C.c -------------------------------------------------------------------------------- /topics/update time by one secon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/update time by one secon.c -------------------------------------------------------------------------------- /topics/use of comma operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/topics/use of comma operator.c -------------------------------------------------------------------------------- /use of stdarg.h header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eashish93/C-Notes/HEAD/use of stdarg.h header.c --------------------------------------------------------------------------------