├── .gitignore ├── 0 Installation └── first.c ├── 1 First C Program ├── filecode.c └── print.c ├── 10 Strings ├── pointer.c ├── strcat.c ├── strcmp.c ├── strcmp.ou ├── strcpy.c ├── string_format.c ├── string_initialization.c ├── string_input.c ├── strlen.c └── two_d_array.c ├── 11 Structure ├── array.c ├── function.c ├── initialization.c ├── need.c ├── pointer.c ├── student.c └── typedef.c ├── 12 Dynamic Memory Allocation ├── calloc.c ├── free.c ├── malloc.c ├── output.txt ├── realloc └── realloc.c ├── 13 File Input and Output ├── file.c ├── kgcoding.txt ├── write.c └── writing.txt ├── 2 Variables and DataTypes ├── escape ├── escape.c ├── scan ├── scan.c ├── sum ├── sum.c ├── variables └── variables.c ├── 4 Decision Control Structure ├── goto.c ├── if-else ladder.c ├── if-else.c ├── if.c ├── logical.c ├── nested-if.c ├── switch.c └── ternary.c ├── 5 Iteration and Loop ├── break.c ├── continue.c ├── do-while.c ├── for.c ├── odd.c ├── table.c └── while.c ├── 6 Function and Recursion ├── factorial.c ├── function ├── function.c ├── swap.c └── tempCodeRunnerFile ├── 7 Pointers ├── pointer ├── pointer.c └── swap.c ├── 8 Data Types and Storage Classes └── factorial.c ├── 9 Arrays ├── array_as_argument.c ├── array_declaration.c ├── array_traversal.c ├── need_of_array.c └── two_d_array.c ├── C Notes.pdf └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/.gitignore -------------------------------------------------------------------------------- /0 Installation/first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/0 Installation/first.c -------------------------------------------------------------------------------- /1 First C Program/filecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/1 First C Program/filecode.c -------------------------------------------------------------------------------- /1 First C Program/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/1 First C Program/print.c -------------------------------------------------------------------------------- /10 Strings/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/pointer.c -------------------------------------------------------------------------------- /10 Strings/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/strcat.c -------------------------------------------------------------------------------- /10 Strings/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/strcmp.c -------------------------------------------------------------------------------- /10 Strings/strcmp.ou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/strcmp.ou -------------------------------------------------------------------------------- /10 Strings/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/strcpy.c -------------------------------------------------------------------------------- /10 Strings/string_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/string_format.c -------------------------------------------------------------------------------- /10 Strings/string_initialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/string_initialization.c -------------------------------------------------------------------------------- /10 Strings/string_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/string_input.c -------------------------------------------------------------------------------- /10 Strings/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/strlen.c -------------------------------------------------------------------------------- /10 Strings/two_d_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/10 Strings/two_d_array.c -------------------------------------------------------------------------------- /11 Structure/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/array.c -------------------------------------------------------------------------------- /11 Structure/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/function.c -------------------------------------------------------------------------------- /11 Structure/initialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/initialization.c -------------------------------------------------------------------------------- /11 Structure/need.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/need.c -------------------------------------------------------------------------------- /11 Structure/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/pointer.c -------------------------------------------------------------------------------- /11 Structure/student.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/student.c -------------------------------------------------------------------------------- /11 Structure/typedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/11 Structure/typedef.c -------------------------------------------------------------------------------- /12 Dynamic Memory Allocation/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/12 Dynamic Memory Allocation/calloc.c -------------------------------------------------------------------------------- /12 Dynamic Memory Allocation/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/12 Dynamic Memory Allocation/free.c -------------------------------------------------------------------------------- /12 Dynamic Memory Allocation/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/12 Dynamic Memory Allocation/malloc.c -------------------------------------------------------------------------------- /12 Dynamic Memory Allocation/output.txt: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | The square of 5 is 25. 3 | -------------------------------------------------------------------------------- /12 Dynamic Memory Allocation/realloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/12 Dynamic Memory Allocation/realloc -------------------------------------------------------------------------------- /12 Dynamic Memory Allocation/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/12 Dynamic Memory Allocation/realloc.c -------------------------------------------------------------------------------- /13 File Input and Output/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/13 File Input and Output/file.c -------------------------------------------------------------------------------- /13 File Input and Output/kgcoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/13 File Input and Output/kgcoding.txt -------------------------------------------------------------------------------- /13 File Input and Output/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/13 File Input and Output/write.c -------------------------------------------------------------------------------- /13 File Input and Output/writing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/13 File Input and Output/writing.txt -------------------------------------------------------------------------------- /2 Variables and DataTypes/escape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/escape -------------------------------------------------------------------------------- /2 Variables and DataTypes/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/escape.c -------------------------------------------------------------------------------- /2 Variables and DataTypes/scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/scan -------------------------------------------------------------------------------- /2 Variables and DataTypes/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/scan.c -------------------------------------------------------------------------------- /2 Variables and DataTypes/sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/sum -------------------------------------------------------------------------------- /2 Variables and DataTypes/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/sum.c -------------------------------------------------------------------------------- /2 Variables and DataTypes/variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/variables -------------------------------------------------------------------------------- /2 Variables and DataTypes/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/2 Variables and DataTypes/variables.c -------------------------------------------------------------------------------- /4 Decision Control Structure/goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/goto.c -------------------------------------------------------------------------------- /4 Decision Control Structure/if-else ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/if-else ladder.c -------------------------------------------------------------------------------- /4 Decision Control Structure/if-else.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/if-else.c -------------------------------------------------------------------------------- /4 Decision Control Structure/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/if.c -------------------------------------------------------------------------------- /4 Decision Control Structure/logical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/logical.c -------------------------------------------------------------------------------- /4 Decision Control Structure/nested-if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/nested-if.c -------------------------------------------------------------------------------- /4 Decision Control Structure/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/switch.c -------------------------------------------------------------------------------- /4 Decision Control Structure/ternary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/4 Decision Control Structure/ternary.c -------------------------------------------------------------------------------- /5 Iteration and Loop/break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/break.c -------------------------------------------------------------------------------- /5 Iteration and Loop/continue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/continue.c -------------------------------------------------------------------------------- /5 Iteration and Loop/do-while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/do-while.c -------------------------------------------------------------------------------- /5 Iteration and Loop/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/for.c -------------------------------------------------------------------------------- /5 Iteration and Loop/odd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/odd.c -------------------------------------------------------------------------------- /5 Iteration and Loop/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/table.c -------------------------------------------------------------------------------- /5 Iteration and Loop/while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/5 Iteration and Loop/while.c -------------------------------------------------------------------------------- /6 Function and Recursion/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/6 Function and Recursion/factorial.c -------------------------------------------------------------------------------- /6 Function and Recursion/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/6 Function and Recursion/function -------------------------------------------------------------------------------- /6 Function and Recursion/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/6 Function and Recursion/function.c -------------------------------------------------------------------------------- /6 Function and Recursion/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/6 Function and Recursion/swap.c -------------------------------------------------------------------------------- /6 Function and Recursion/tempCodeRunnerFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/6 Function and Recursion/tempCodeRunnerFile -------------------------------------------------------------------------------- /7 Pointers/pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/7 Pointers/pointer -------------------------------------------------------------------------------- /7 Pointers/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/7 Pointers/pointer.c -------------------------------------------------------------------------------- /7 Pointers/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/7 Pointers/swap.c -------------------------------------------------------------------------------- /8 Data Types and Storage Classes/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/8 Data Types and Storage Classes/factorial.c -------------------------------------------------------------------------------- /9 Arrays/array_as_argument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/9 Arrays/array_as_argument.c -------------------------------------------------------------------------------- /9 Arrays/array_declaration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/9 Arrays/array_declaration.c -------------------------------------------------------------------------------- /9 Arrays/array_traversal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/9 Arrays/array_traversal.c -------------------------------------------------------------------------------- /9 Arrays/need_of_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/9 Arrays/need_of_array.c -------------------------------------------------------------------------------- /9 Arrays/two_d_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/9 Arrays/two_d_array.c -------------------------------------------------------------------------------- /C Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/C Notes.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/C_Complete_YouTube/HEAD/README.md --------------------------------------------------------------------------------