├── .vscode ├── c_cpp_properties.json ├── launch.json └── settings.json ├── Basic codes ├── Area-of-Triangle.c ├── Area-of-Triangle.exe ├── Area-of-circle.c ├── Area-of-circle.exe ├── Area-of-ellipse.c ├── Area-of-ellipse.exe ├── Area-of-ring.c ├── Area-of-ring.exe ├── Class-Exercise1.c ├── Class-Exercise1.exe ├── Class-Exercise2.c ├── Class-Exercise2.exe ├── Class-Exercise3.c ├── Class-Exercise3.exe ├── Compound-Interest.c ├── Compound-Interest.exe ├── Currency-Converter.c ├── Currency-Converter.exe ├── Display.c ├── Display.exe ├── Hello-World.c ├── Hello-World.exe ├── Item-Price.c ├── Item-Price.exe ├── Rectangle.c ├── Rectangle.exe ├── SimpleInterest.c ├── SimpleInterest.exe ├── Temperature-Converter.c ├── Temperature-Converter.exe ├── greatest-number.c ├── greatest-number.exe ├── multiplication-of-two-numbers.c ├── multiplication-of-two-numbers.exe ├── pattern.c ├── pattern.exe ├── smallest-number.c ├── smallest-number.exe ├── sum-of-two-numbers.c ├── sum-of-two-numbers.exe └── tempCodeRunnerFile.c ├── Beginner ├── Array1.c ├── Array1.exe ├── Array2.c ├── Array2.exe ├── Class-exercise_1.c ├── Class-exercise_1.exe ├── ForLoop-1.c ├── ForLoop-1.exe ├── IncreamentandDecreament.c ├── IncreamentandDecreament.exe ├── Main3.c ├── Main3.exe ├── NestedForLoop-1.c ├── NestedForLoop-1.exe ├── NestedForLoop-2.c ├── NestedForLoop-2.exe ├── NestedForLoop-3.c ├── NestedForLoop-3.exe ├── NestedForLoop4.c ├── NestedForLoop4.exe ├── NestedForLoop5.c ├── NestedForLoop5.exe ├── Print-Star-Using-For-Loop.c ├── Print-Star-Using-For-Loop.exe ├── do-while_Loop.c ├── do-while_Loop.exe └── sum of digits.c ├── Class-work ├── 2x3-Matrix-sum.c ├── 2x3-Matrix-sum.exe ├── 3x2-Matrix-Sum.c ├── 3x2-Matrix-Sum.exe ├── Bubble-sort.c ├── Bubble-sort.exe ├── Highest-Lowest.c ├── Highest-Lowest.exe ├── Initialize-1-dimentional-array.c ├── Initialize-1-dimentional-array.exe ├── Initialize-2-dimentional-array.c ├── Initialize-2-dimentional-array.exe ├── Marks.c ├── Marks.exe ├── Transpose-of-matrix.c └── Transpose-of-matrix.exe ├── Intermediate-I ├── Break.c ├── Break.exe ├── Calculator-Switch-Case.c ├── Calculator-Switch-Case.exe ├── Continue.c ├── Continue.exe ├── Reverse.c ├── Reverse.exe ├── Skip-Character-1.c ├── Skip-Character-1.exe ├── Skip-Character-2.c ├── Skip-Character-2.exe ├── Switch.c ├── Switch.exe └── tempCodeRunnerFile.c ├── Intermediate-II └── File-handeling.c └── TestFiles ├── Exam-I ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json ├── Area-of-ring.c ├── Area-of-ring.exe ├── Display-odd-or-even.c ├── Display-odd-or-even.exe ├── Display.c ├── Display.exe ├── Display4.c ├── Display4.exe ├── Divisible-by-3-but-not-by-5.c ├── Divisible-by-3-but-not-by-5.exe ├── FizzBuzz.c ├── FizzBuzz.exe ├── Prime-or-Composite.c ├── Prime-or-Composite.exe ├── Sum-of-n-series.c └── Sum-of-n-series.exe └── Test-I ├── Average-and-Sum.c ├── Average-and-Sum.exe ├── Display1.c ├── Display1.exe ├── Display2.c ├── Display2.exe ├── Display3.c ├── Display3.exe ├── Display4.exe ├── Fibonacci-Series.c ├── Fibonacci-Series.exe ├── Palindrome.c ├── Palindrome.exe ├── Sum-of-Series-upto-n-terms.c ├── Sum-of-Series-upto-n-terms.exe ├── Sum-of-even-digits.c ├── Sum-of-even-digits.exe ├── divisible-exactly-by.c └── divisible-exactly-by.exe /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Basic codes/Area-of-Triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-Triangle.c -------------------------------------------------------------------------------- /Basic codes/Area-of-Triangle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-Triangle.exe -------------------------------------------------------------------------------- /Basic codes/Area-of-circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-circle.c -------------------------------------------------------------------------------- /Basic codes/Area-of-circle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-circle.exe -------------------------------------------------------------------------------- /Basic codes/Area-of-ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-ellipse.c -------------------------------------------------------------------------------- /Basic codes/Area-of-ellipse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-ellipse.exe -------------------------------------------------------------------------------- /Basic codes/Area-of-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-ring.c -------------------------------------------------------------------------------- /Basic codes/Area-of-ring.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Area-of-ring.exe -------------------------------------------------------------------------------- /Basic codes/Class-Exercise1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Class-Exercise1.c -------------------------------------------------------------------------------- /Basic codes/Class-Exercise1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Class-Exercise1.exe -------------------------------------------------------------------------------- /Basic codes/Class-Exercise2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Class-Exercise2.c -------------------------------------------------------------------------------- /Basic codes/Class-Exercise2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Class-Exercise2.exe -------------------------------------------------------------------------------- /Basic codes/Class-Exercise3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Class-Exercise3.c -------------------------------------------------------------------------------- /Basic codes/Class-Exercise3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Class-Exercise3.exe -------------------------------------------------------------------------------- /Basic codes/Compound-Interest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Compound-Interest.c -------------------------------------------------------------------------------- /Basic codes/Compound-Interest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Compound-Interest.exe -------------------------------------------------------------------------------- /Basic codes/Currency-Converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Currency-Converter.c -------------------------------------------------------------------------------- /Basic codes/Currency-Converter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Currency-Converter.exe -------------------------------------------------------------------------------- /Basic codes/Display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Display.c -------------------------------------------------------------------------------- /Basic codes/Display.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Display.exe -------------------------------------------------------------------------------- /Basic codes/Hello-World.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Hello-World.c -------------------------------------------------------------------------------- /Basic codes/Hello-World.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Hello-World.exe -------------------------------------------------------------------------------- /Basic codes/Item-Price.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Item-Price.c -------------------------------------------------------------------------------- /Basic codes/Item-Price.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Item-Price.exe -------------------------------------------------------------------------------- /Basic codes/Rectangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Rectangle.c -------------------------------------------------------------------------------- /Basic codes/Rectangle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Rectangle.exe -------------------------------------------------------------------------------- /Basic codes/SimpleInterest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/SimpleInterest.c -------------------------------------------------------------------------------- /Basic codes/SimpleInterest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/SimpleInterest.exe -------------------------------------------------------------------------------- /Basic codes/Temperature-Converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Temperature-Converter.c -------------------------------------------------------------------------------- /Basic codes/Temperature-Converter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/Temperature-Converter.exe -------------------------------------------------------------------------------- /Basic codes/greatest-number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/greatest-number.c -------------------------------------------------------------------------------- /Basic codes/greatest-number.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/greatest-number.exe -------------------------------------------------------------------------------- /Basic codes/multiplication-of-two-numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/multiplication-of-two-numbers.c -------------------------------------------------------------------------------- /Basic codes/multiplication-of-two-numbers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/multiplication-of-two-numbers.exe -------------------------------------------------------------------------------- /Basic codes/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/pattern.c -------------------------------------------------------------------------------- /Basic codes/pattern.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/pattern.exe -------------------------------------------------------------------------------- /Basic codes/smallest-number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/smallest-number.c -------------------------------------------------------------------------------- /Basic codes/smallest-number.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/smallest-number.exe -------------------------------------------------------------------------------- /Basic codes/sum-of-two-numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/sum-of-two-numbers.c -------------------------------------------------------------------------------- /Basic codes/sum-of-two-numbers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Basic codes/sum-of-two-numbers.exe -------------------------------------------------------------------------------- /Basic codes/tempCodeRunnerFile.c: -------------------------------------------------------------------------------- 1 | i+a -------------------------------------------------------------------------------- /Beginner/Array1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Array1.c -------------------------------------------------------------------------------- /Beginner/Array1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Array1.exe -------------------------------------------------------------------------------- /Beginner/Array2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Array2.c -------------------------------------------------------------------------------- /Beginner/Array2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Array2.exe -------------------------------------------------------------------------------- /Beginner/Class-exercise_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Class-exercise_1.c -------------------------------------------------------------------------------- /Beginner/Class-exercise_1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Class-exercise_1.exe -------------------------------------------------------------------------------- /Beginner/ForLoop-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/ForLoop-1.c -------------------------------------------------------------------------------- /Beginner/ForLoop-1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/ForLoop-1.exe -------------------------------------------------------------------------------- /Beginner/IncreamentandDecreament.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/IncreamentandDecreament.c -------------------------------------------------------------------------------- /Beginner/IncreamentandDecreament.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/IncreamentandDecreament.exe -------------------------------------------------------------------------------- /Beginner/Main3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Main3.c -------------------------------------------------------------------------------- /Beginner/Main3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Main3.exe -------------------------------------------------------------------------------- /Beginner/NestedForLoop-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop-1.c -------------------------------------------------------------------------------- /Beginner/NestedForLoop-1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop-1.exe -------------------------------------------------------------------------------- /Beginner/NestedForLoop-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop-2.c -------------------------------------------------------------------------------- /Beginner/NestedForLoop-2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop-2.exe -------------------------------------------------------------------------------- /Beginner/NestedForLoop-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop-3.c -------------------------------------------------------------------------------- /Beginner/NestedForLoop-3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop-3.exe -------------------------------------------------------------------------------- /Beginner/NestedForLoop4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop4.c -------------------------------------------------------------------------------- /Beginner/NestedForLoop4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop4.exe -------------------------------------------------------------------------------- /Beginner/NestedForLoop5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop5.c -------------------------------------------------------------------------------- /Beginner/NestedForLoop5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/NestedForLoop5.exe -------------------------------------------------------------------------------- /Beginner/Print-Star-Using-For-Loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Print-Star-Using-For-Loop.c -------------------------------------------------------------------------------- /Beginner/Print-Star-Using-For-Loop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/Print-Star-Using-For-Loop.exe -------------------------------------------------------------------------------- /Beginner/do-while_Loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/do-while_Loop.c -------------------------------------------------------------------------------- /Beginner/do-while_Loop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/do-while_Loop.exe -------------------------------------------------------------------------------- /Beginner/sum of digits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Beginner/sum of digits.c -------------------------------------------------------------------------------- /Class-work/2x3-Matrix-sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/2x3-Matrix-sum.c -------------------------------------------------------------------------------- /Class-work/2x3-Matrix-sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/2x3-Matrix-sum.exe -------------------------------------------------------------------------------- /Class-work/3x2-Matrix-Sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/3x2-Matrix-Sum.c -------------------------------------------------------------------------------- /Class-work/3x2-Matrix-Sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/3x2-Matrix-Sum.exe -------------------------------------------------------------------------------- /Class-work/Bubble-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Bubble-sort.c -------------------------------------------------------------------------------- /Class-work/Bubble-sort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Bubble-sort.exe -------------------------------------------------------------------------------- /Class-work/Highest-Lowest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Highest-Lowest.c -------------------------------------------------------------------------------- /Class-work/Highest-Lowest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Highest-Lowest.exe -------------------------------------------------------------------------------- /Class-work/Initialize-1-dimentional-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Initialize-1-dimentional-array.c -------------------------------------------------------------------------------- /Class-work/Initialize-1-dimentional-array.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Initialize-1-dimentional-array.exe -------------------------------------------------------------------------------- /Class-work/Initialize-2-dimentional-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Initialize-2-dimentional-array.c -------------------------------------------------------------------------------- /Class-work/Initialize-2-dimentional-array.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Initialize-2-dimentional-array.exe -------------------------------------------------------------------------------- /Class-work/Marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Marks.c -------------------------------------------------------------------------------- /Class-work/Marks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Marks.exe -------------------------------------------------------------------------------- /Class-work/Transpose-of-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Transpose-of-matrix.c -------------------------------------------------------------------------------- /Class-work/Transpose-of-matrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Class-work/Transpose-of-matrix.exe -------------------------------------------------------------------------------- /Intermediate-I/Break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Break.c -------------------------------------------------------------------------------- /Intermediate-I/Break.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Break.exe -------------------------------------------------------------------------------- /Intermediate-I/Calculator-Switch-Case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Calculator-Switch-Case.c -------------------------------------------------------------------------------- /Intermediate-I/Calculator-Switch-Case.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Calculator-Switch-Case.exe -------------------------------------------------------------------------------- /Intermediate-I/Continue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Continue.c -------------------------------------------------------------------------------- /Intermediate-I/Continue.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Continue.exe -------------------------------------------------------------------------------- /Intermediate-I/Reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Reverse.c -------------------------------------------------------------------------------- /Intermediate-I/Reverse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Reverse.exe -------------------------------------------------------------------------------- /Intermediate-I/Skip-Character-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Skip-Character-1.c -------------------------------------------------------------------------------- /Intermediate-I/Skip-Character-1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Skip-Character-1.exe -------------------------------------------------------------------------------- /Intermediate-I/Skip-Character-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Skip-Character-2.c -------------------------------------------------------------------------------- /Intermediate-I/Skip-Character-2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Skip-Character-2.exe -------------------------------------------------------------------------------- /Intermediate-I/Switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Switch.c -------------------------------------------------------------------------------- /Intermediate-I/Switch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/Switch.exe -------------------------------------------------------------------------------- /Intermediate-I/tempCodeRunnerFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/Intermediate-I/tempCodeRunnerFile.c -------------------------------------------------------------------------------- /Intermediate-II/File-handeling.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestFiles/Exam-I/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /TestFiles/Exam-I/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/.vscode/launch.json -------------------------------------------------------------------------------- /TestFiles/Exam-I/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/.vscode/settings.json -------------------------------------------------------------------------------- /TestFiles/Exam-I/Area-of-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Area-of-ring.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Area-of-ring.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Area-of-ring.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/Display-odd-or-even.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Display-odd-or-even.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Display-odd-or-even.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Display-odd-or-even.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/Display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Display.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Display.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Display.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/Display4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Display4.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Display4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Display4.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/Divisible-by-3-but-not-by-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Divisible-by-3-but-not-by-5.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Divisible-by-3-but-not-by-5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Divisible-by-3-but-not-by-5.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/FizzBuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/FizzBuzz.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/FizzBuzz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/FizzBuzz.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/Prime-or-Composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Prime-or-Composite.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Prime-or-Composite.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Prime-or-Composite.exe -------------------------------------------------------------------------------- /TestFiles/Exam-I/Sum-of-n-series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Sum-of-n-series.c -------------------------------------------------------------------------------- /TestFiles/Exam-I/Sum-of-n-series.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Exam-I/Sum-of-n-series.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Average-and-Sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Average-and-Sum.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Average-and-Sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Average-and-Sum.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Display1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display1.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Display1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display1.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Display2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display2.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Display2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display2.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Display3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display3.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Display3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display3.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Display4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Display4.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Fibonacci-Series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Fibonacci-Series.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Fibonacci-Series.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Fibonacci-Series.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Palindrome.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Palindrome.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Palindrome.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Sum-of-Series-upto-n-terms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Sum-of-Series-upto-n-terms.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Sum-of-Series-upto-n-terms.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Sum-of-Series-upto-n-terms.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/Sum-of-even-digits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Sum-of-even-digits.c -------------------------------------------------------------------------------- /TestFiles/Test-I/Sum-of-even-digits.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/Sum-of-even-digits.exe -------------------------------------------------------------------------------- /TestFiles/Test-I/divisible-exactly-by.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/divisible-exactly-by.c -------------------------------------------------------------------------------- /TestFiles/Test-I/divisible-exactly-by.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinesh13p/C-Program_2nd-sem/HEAD/TestFiles/Test-I/divisible-exactly-by.exe --------------------------------------------------------------------------------