├── .gitignore ├── Challenges ├── S04_Challenge_BunchOfConstants │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── bunch_of_constants.c ├── S04_Challenge_SpaceshipThrust │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── spaceship_thrust.c ├── S05_Challenge_BitSelector │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── bit_selector.c ├── S05_Challenge_Sphere │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── sphere.c ├── S06_Challenge_EvenOdd │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── even_odd.c ├── S06_Challenge_MinimumPowerOf2 │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── minimum_power_of_2.c ├── S06_Challenge_PlanetaryAlignment │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── planetary_alignment.c ├── S06_Challenge_PrimeNumbers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── prime_numbers.c ├── S06_Challenge_SigmaDrawing │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── sigma_drawing.c ├── S06_Challenge_WeekDays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── week_days.c ├── S07_Challenge_PrimeNumbersImproved │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── prime_numbers_improved.c ├── S09_Challenge_FloatDecomposition │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── float_decomposition.c ├── S09_Challenge_SimpleSwapper │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── simple_swapper.c ├── S10_Challenge_PrimeNumbersFurtherImproved │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── prime_numbers_further_improved.c ├── S10_Challenge_RandomMatrix │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── random_matrix.c ├── S11_Challenge_GetTheLine │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── get_the_line.c ├── S11_Challenge_MoveTheRook │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── Rook Chess.png │ └── rook_chess.c ├── S12_Challenge_GetTheLineDynamically │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── get_the_line_dynamically.c └── S13_Challenge_WorkoutsHeartRateMonitor │ ├── .vscode │ ├── c_cpp_properties.json │ ├── keybindings.json │ ├── launch.json │ ├── make_build_dir.bat │ ├── make_build_dir.sh │ ├── settings.json │ └── tasks.json │ └── heart_rate_monitor.c ├── Examples ├── S03_L02_RunYourFirstCProgram │ └── example.c ├── S03_L05_WorkingWithVSCode │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S04_L04_Integers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S04_L05_FloatingPoints │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S04_L06_Characters │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ └── example_2.c ├── S04_L07_Booleans │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S04_L08_Enum │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ ├── example_2.c │ ├── example_3.c │ ├── example_4.c │ └── example_5.c ├── S04_L09_Typedef │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ └── example_2.c ├── S05_L02_ArithmeticOperators │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ └── example_2.c ├── S05_L03_IncrementDecrementOperators │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ ├── example_2.c │ └── example_3.c ├── S05_L04_RelationalOperators │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ └── example_2.c ├── S05_L05_LogicalOperators │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S05_L06_BitwiseOperators │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S05_L09_AssignmentOperators │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S05_L10_SizeofOperator │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S06_L02_IfElseStatement │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ └── example_2.c ├── S06_L05_SwitchStatement │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example_1.c ├── S06_L14_BreakAndContinue │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example_1.c │ ├── example_2.c │ └── example_3.c ├── S08_L03_DebuggingInVSCode │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── debug_example.c ├── S08_L04_CommonMistakesInAction │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S08_L05_CommonMistakesInActionTake2 │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S09_L04_PracticeWithPointers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S09_L05_NullPointers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S09_L07_FunctionsAndPointers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L02_WorkingWithArrays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L03_DefiningAndAccessingArrays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L04_InitializingArrays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L05_FindTheSizeOfAnArray │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L06_PointersAndArrays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L07_PointersArithmetic │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L08_MultidimensionalArrays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S10_L09_VariableLengthArrays │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S11_L04_StringLengthCopyCompare │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S11_L07_StringSearchingAndTokenization │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S11_L12_PracticeWithNumericConversion │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L02_StructuringData │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L03_DefiningAndAccessingStructures │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L04_InitializingStructures │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L05_BitFields │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── BLE Data Packet.PNG │ └── example.c ├── S13_L06_ArraysOfStructures │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L07_PointersToStructures │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L08_StructuresAndFunctions │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L09_PointersVersusArraysMembers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S13_L10_FlexibleArrayMembers │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── BLE Data Packet.PNG │ └── example.c ├── S14_L02_HowToUseUnions │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S15_L04_FunctionLikeMacros │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S15_L05_ConditionalCompilation │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ └── example.c ├── S16_L07_LetsPracticeWithFileIO │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── keybindings.json │ │ ├── launch.json │ │ ├── make_build_dir.bat │ │ ├── make_build_dir.sh │ │ ├── settings.json │ │ └── tasks.json │ ├── example.c │ └── samples.bin └── S17_L03_BuildYourProject │ ├── .vscode │ ├── c_cpp_properties.json │ ├── keybindings.json │ ├── launch.json │ ├── make_build_dir.bat │ ├── make_build_dir.sh │ ├── settings.json │ └── tasks.json │ ├── led.c │ ├── led.h │ ├── main.c │ ├── mod1.c │ ├── mod1.h │ ├── mod2.c │ └── mod2.h ├── README.md └── Template ├── .vscode ├── c_cpp_properties.json ├── keybindings.json ├── launch.json ├── make_build_dir.bat ├── make_build_dir.sh ├── settings.json └── tasks.json └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_BunchOfConstants/bunch_of_constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_BunchOfConstants/bunch_of_constants.c -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S04_Challenge_SpaceshipThrust/spaceship_thrust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S04_Challenge_SpaceshipThrust/spaceship_thrust.c -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_BitSelector/bit_selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_BitSelector/bit_selector.c -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S05_Challenge_Sphere/sphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S05_Challenge_Sphere/sphere.c -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_EvenOdd/even_odd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_EvenOdd/even_odd.c -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_MinimumPowerOf2/minimum_power_of_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_MinimumPowerOf2/minimum_power_of_2.c -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PlanetaryAlignment/planetary_alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PlanetaryAlignment/planetary_alignment.c -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_PrimeNumbers/prime_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_PrimeNumbers/prime_numbers.c -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_SigmaDrawing/sigma_drawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_SigmaDrawing/sigma_drawing.c -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S06_Challenge_WeekDays/week_days.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S06_Challenge_WeekDays/week_days.c -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S07_Challenge_PrimeNumbersImproved/prime_numbers_improved.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S07_Challenge_PrimeNumbersImproved/prime_numbers_improved.c -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_FloatDecomposition/float_decomposition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_FloatDecomposition/float_decomposition.c -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S09_Challenge_SimpleSwapper/simple_swapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S09_Challenge_SimpleSwapper/simple_swapper.c -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_PrimeNumbersFurtherImproved/prime_numbers_further_improved.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_PrimeNumbersFurtherImproved/prime_numbers_further_improved.c -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S10_Challenge_RandomMatrix/random_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S10_Challenge_RandomMatrix/random_matrix.c -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_GetTheLine/get_the_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_GetTheLine/get_the_line.c -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/Rook Chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/Rook Chess.png -------------------------------------------------------------------------------- /Challenges/S11_Challenge_MoveTheRook/rook_chess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S11_Challenge_MoveTheRook/rook_chess.c -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S12_Challenge_GetTheLineDynamically/get_the_line_dynamically.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S12_Challenge_GetTheLineDynamically/get_the_line_dynamically.c -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/keybindings.json -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/launch.json -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/.vscode/tasks.json -------------------------------------------------------------------------------- /Challenges/S13_Challenge_WorkoutsHeartRateMonitor/heart_rate_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Challenges/S13_Challenge_WorkoutsHeartRateMonitor/heart_rate_monitor.c -------------------------------------------------------------------------------- /Examples/S03_L02_RunYourFirstCProgram/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L02_RunYourFirstCProgram/example.c -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S03_L05_WorkingWithVSCode/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S03_L05_WorkingWithVSCode/example.c -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S04_L04_Integers/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L04_Integers/example_1.c -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S04_L05_FloatingPoints/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L05_FloatingPoints/example_1.c -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/example_1.c -------------------------------------------------------------------------------- /Examples/S04_L06_Characters/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L06_Characters/example_2.c -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S04_L07_Booleans/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L07_Booleans/example_1.c -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/example_1.c -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/example_2.c -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/example_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/example_3.c -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/example_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/example_4.c -------------------------------------------------------------------------------- /Examples/S04_L08_Enum/example_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L08_Enum/example_5.c -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/example_1.c -------------------------------------------------------------------------------- /Examples/S04_L09_Typedef/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S04_L09_Typedef/example_2.c -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/example_1.c -------------------------------------------------------------------------------- /Examples/S05_L02_ArithmeticOperators/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L02_ArithmeticOperators/example_2.c -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/example_1.c -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/example_2.c -------------------------------------------------------------------------------- /Examples/S05_L03_IncrementDecrementOperators/example_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L03_IncrementDecrementOperators/example_3.c -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/example_1.c -------------------------------------------------------------------------------- /Examples/S05_L04_RelationalOperators/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L04_RelationalOperators/example_2.c -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L05_LogicalOperators/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L05_LogicalOperators/example_1.c -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L06_BitwiseOperators/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L06_BitwiseOperators/example_1.c -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L09_AssignmentOperators/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L09_AssignmentOperators/example_1.c -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S05_L10_SizeofOperator/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S05_L10_SizeofOperator/example_1.c -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/example_1.c -------------------------------------------------------------------------------- /Examples/S06_L02_IfElseStatement/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L02_IfElseStatement/example_2.c -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S06_L05_SwitchStatement/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L05_SwitchStatement/example_1.c -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/example_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/example_1.c -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/example_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/example_2.c -------------------------------------------------------------------------------- /Examples/S06_L14_BreakAndContinue/example_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S06_L14_BreakAndContinue/example_3.c -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S08_L03_DebuggingInVSCode/debug_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L03_DebuggingInVSCode/debug_example.c -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S08_L04_CommonMistakesInAction/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L04_CommonMistakesInAction/example.c -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S08_L05_CommonMistakesInActionTake2/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S08_L05_CommonMistakesInActionTake2/example.c -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S09_L04_PracticeWithPointers/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L04_PracticeWithPointers/example.c -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S09_L05_NullPointers/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L05_NullPointers/example.c -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S09_L07_FunctionsAndPointers/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S09_L07_FunctionsAndPointers/example.c -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L02_WorkingWithArrays/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L02_WorkingWithArrays/example.c -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L03_DefiningAndAccessingArrays/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L03_DefiningAndAccessingArrays/example.c -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L04_InitializingArrays/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L04_InitializingArrays/example.c -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L05_FindTheSizeOfAnArray/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L05_FindTheSizeOfAnArray/example.c -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L06_PointersAndArrays/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L06_PointersAndArrays/example.c -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L07_PointersArithmetic/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L07_PointersArithmetic/example.c -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L08_MultidimensionalArrays/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L08_MultidimensionalArrays/example.c -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S10_L09_VariableLengthArrays/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S10_L09_VariableLengthArrays/example.c -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S11_L04_StringLengthCopyCompare/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L04_StringLengthCopyCompare/example.c -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S11_L07_StringSearchingAndTokenization/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L07_StringSearchingAndTokenization/example.c -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S11_L12_PracticeWithNumericConversion/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S11_L12_PracticeWithNumericConversion/example.c -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L02_StructuringData/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L02_StructuringData/example.c -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L03_DefiningAndAccessingStructures/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L03_DefiningAndAccessingStructures/example.c -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L04_InitializingStructures/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L04_InitializingStructures/example.c -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/BLE Data Packet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/BLE Data Packet.PNG -------------------------------------------------------------------------------- /Examples/S13_L05_BitFields/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L05_BitFields/example.c -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L06_ArraysOfStructures/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L06_ArraysOfStructures/example.c -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L07_PointersToStructures/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L07_PointersToStructures/example.c -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L08_StructuresAndFunctions/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L08_StructuresAndFunctions/example.c -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L09_PointersVersusArraysMembers/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L09_PointersVersusArraysMembers/example.c -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/BLE Data Packet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/BLE Data Packet.PNG -------------------------------------------------------------------------------- /Examples/S13_L10_FlexibleArrayMembers/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S13_L10_FlexibleArrayMembers/example.c -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S14_L02_HowToUseUnions/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S14_L02_HowToUseUnions/example.c -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S15_L04_FunctionLikeMacros/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L04_FunctionLikeMacros/example.c -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S15_L05_ConditionalCompilation/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S15_L05_ConditionalCompilation/example.c -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/example.c -------------------------------------------------------------------------------- /Examples/S16_L07_LetsPracticeWithFileIO/samples.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S16_L07_LetsPracticeWithFileIO/samples.bin -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/.vscode/keybindings.json -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/.vscode/launch.json -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/.vscode/tasks.json -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/led.c -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/led.h -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/main.c -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/mod1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/mod1.c -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/mod1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/mod1.h -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/mod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/mod2.c -------------------------------------------------------------------------------- /Examples/S17_L03_BuildYourProject/mod2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Examples/S17_L03_BuildYourProject/mod2.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/README.md -------------------------------------------------------------------------------- /Template/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Template/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/.vscode/keybindings.json -------------------------------------------------------------------------------- /Template/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/.vscode/launch.json -------------------------------------------------------------------------------- /Template/.vscode/make_build_dir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/.vscode/make_build_dir.bat -------------------------------------------------------------------------------- /Template/.vscode/make_build_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/.vscode/make_build_dir.sh -------------------------------------------------------------------------------- /Template/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 2 3 | } 4 | -------------------------------------------------------------------------------- /Template/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/.vscode/tasks.json -------------------------------------------------------------------------------- /Template/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytegarage/c-programming-bootcamp/HEAD/Template/main.c --------------------------------------------------------------------------------