├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── Banking_Program_C ├── ac_statements │ ├── 127101234.txt │ ├── 127102345.txt │ ├── 127103456.txt │ └── 127104567.txt ├── bank.h ├── bank_main.c └── banking_func.c ├── C Programs ├── CProgram.c ├── Clg_Practicals │ ├── Decimal-Binary.c │ ├── Matrix_add.c │ ├── ascenting_order.c │ ├── electricity_bill.c │ ├── floids_triangle.c │ ├── palindrome.c │ ├── prime.c │ ├── prime_number.c │ ├── pyramid_of_numbers.c │ └── sum_of_digit.c ├── HelloWorld.c ├── MessageBot.c ├── StudentList.c ├── StudentsMark.c ├── Voding_Booth.c ├── alphabet position testing.c ├── binary triangle 2.c ├── binary triangle 3.c ├── binary triangle.c ├── c_server.c ├── check dividable num.c ├── check number positive or negative.c ├── check_int.c ├── check_the_even_num_array.c ├── diamond_pyramid.c ├── distance bvn two citties.c ├── factorial of num.c ├── file_reading.c ├── file_writing.c ├── floids_triangle.c ├── frequency_of_number.c ├── greatest_and_smallest_num_array.c ├── gross glosary.c ├── hallow_triangle.c ├── hashtable.c ├── lab.c ├── leep_year_checking_code.c ├── lines.c ├── multi_returns.c ├── multiplication_table.c ├── number_pyramid.c ├── number_range.c ├── number_triangle.c ├── numeric triangle 2.c ├── numeric triangle 3.c ├── numeric triangle 4.c ├── odd or even num.c ├── palindrome.c ├── pattern.c ├── pattern_using_if.c ├── pointers.c ├── practice.c ├── prime_number.c ├── primenumber.c ├── pyramid_triangle.c ├── read_full_fille.c ├── recursion.c ├── rev array.c ├── reversenumber.c ├── scanf_f.c ├── simple calculator.c ├── snakegame.c ├── string in structure.c ├── string.c ├── structure.c ├── studentslist.c ├── sum if the first n natural numbers.c ├── sum of digits.c ├── swap_number.c ├── tem into cdegrees.c ├── tempCodeRunnerFile.c ├── test.c ├── test.txt ├── test1.c ├── test2.txt ├── test3.txt ├── test4.txt ├── testing.c ├── voting.c └── voting_age.c └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Banking_Program_C/ac_statements/127101234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/ac_statements/127101234.txt -------------------------------------------------------------------------------- /Banking_Program_C/ac_statements/127102345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/ac_statements/127102345.txt -------------------------------------------------------------------------------- /Banking_Program_C/ac_statements/127103456.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/ac_statements/127103456.txt -------------------------------------------------------------------------------- /Banking_Program_C/ac_statements/127104567.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/ac_statements/127104567.txt -------------------------------------------------------------------------------- /Banking_Program_C/bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/bank.h -------------------------------------------------------------------------------- /Banking_Program_C/bank_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/bank_main.c -------------------------------------------------------------------------------- /Banking_Program_C/banking_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/Banking_Program_C/banking_func.c -------------------------------------------------------------------------------- /C Programs/CProgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/CProgram.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/Decimal-Binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/Decimal-Binary.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/Matrix_add.c: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/ascenting_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/ascenting_order.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/electricity_bill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/electricity_bill.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/floids_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/floids_triangle.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/palindrome.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/prime.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/prime_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/prime_number.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/pyramid_of_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/pyramid_of_numbers.c -------------------------------------------------------------------------------- /C Programs/Clg_Practicals/sum_of_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Clg_Practicals/sum_of_digit.c -------------------------------------------------------------------------------- /C Programs/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/HelloWorld.c -------------------------------------------------------------------------------- /C Programs/MessageBot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/MessageBot.c -------------------------------------------------------------------------------- /C Programs/StudentList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/StudentList.c -------------------------------------------------------------------------------- /C Programs/StudentsMark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/StudentsMark.c -------------------------------------------------------------------------------- /C Programs/Voding_Booth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/Voding_Booth.c -------------------------------------------------------------------------------- /C Programs/alphabet position testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/alphabet position testing.c -------------------------------------------------------------------------------- /C Programs/binary triangle 2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/binary triangle 2.c -------------------------------------------------------------------------------- /C Programs/binary triangle 3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/binary triangle 3.c -------------------------------------------------------------------------------- /C Programs/binary triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/binary triangle.c -------------------------------------------------------------------------------- /C Programs/c_server.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C Programs/check dividable num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/check dividable num.c -------------------------------------------------------------------------------- /C Programs/check number positive or negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/check number positive or negative.c -------------------------------------------------------------------------------- /C Programs/check_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/check_int.c -------------------------------------------------------------------------------- /C Programs/check_the_even_num_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/check_the_even_num_array.c -------------------------------------------------------------------------------- /C Programs/diamond_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/diamond_pyramid.c -------------------------------------------------------------------------------- /C Programs/distance bvn two citties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/distance bvn two citties.c -------------------------------------------------------------------------------- /C Programs/factorial of num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/factorial of num.c -------------------------------------------------------------------------------- /C Programs/file_reading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/file_reading.c -------------------------------------------------------------------------------- /C Programs/file_writing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/file_writing.c -------------------------------------------------------------------------------- /C Programs/floids_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/floids_triangle.c -------------------------------------------------------------------------------- /C Programs/frequency_of_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/frequency_of_number.c -------------------------------------------------------------------------------- /C Programs/greatest_and_smallest_num_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/greatest_and_smallest_num_array.c -------------------------------------------------------------------------------- /C Programs/gross glosary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/gross glosary.c -------------------------------------------------------------------------------- /C Programs/hallow_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/hallow_triangle.c -------------------------------------------------------------------------------- /C Programs/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/hashtable.c -------------------------------------------------------------------------------- /C Programs/lab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/lab.c -------------------------------------------------------------------------------- /C Programs/leep_year_checking_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/leep_year_checking_code.c -------------------------------------------------------------------------------- /C Programs/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/lines.c -------------------------------------------------------------------------------- /C Programs/multi_returns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/multi_returns.c -------------------------------------------------------------------------------- /C Programs/multiplication_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/multiplication_table.c -------------------------------------------------------------------------------- /C Programs/number_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/number_pyramid.c -------------------------------------------------------------------------------- /C Programs/number_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/number_range.c -------------------------------------------------------------------------------- /C Programs/number_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/number_triangle.c -------------------------------------------------------------------------------- /C Programs/numeric triangle 2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/numeric triangle 2.c -------------------------------------------------------------------------------- /C Programs/numeric triangle 3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/numeric triangle 3.c -------------------------------------------------------------------------------- /C Programs/numeric triangle 4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/numeric triangle 4.c -------------------------------------------------------------------------------- /C Programs/odd or even num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/odd or even num.c -------------------------------------------------------------------------------- /C Programs/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/palindrome.c -------------------------------------------------------------------------------- /C Programs/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/pattern.c -------------------------------------------------------------------------------- /C Programs/pattern_using_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/pattern_using_if.c -------------------------------------------------------------------------------- /C Programs/pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/pointers.c -------------------------------------------------------------------------------- /C Programs/practice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/practice.c -------------------------------------------------------------------------------- /C Programs/prime_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/prime_number.c -------------------------------------------------------------------------------- /C Programs/primenumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/primenumber.c -------------------------------------------------------------------------------- /C Programs/pyramid_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/pyramid_triangle.c -------------------------------------------------------------------------------- /C Programs/read_full_fille.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/read_full_fille.c -------------------------------------------------------------------------------- /C Programs/recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/recursion.c -------------------------------------------------------------------------------- /C Programs/rev array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/rev array.c -------------------------------------------------------------------------------- /C Programs/reversenumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/reversenumber.c -------------------------------------------------------------------------------- /C Programs/scanf_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/scanf_f.c -------------------------------------------------------------------------------- /C Programs/simple calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/simple calculator.c -------------------------------------------------------------------------------- /C Programs/snakegame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/snakegame.c -------------------------------------------------------------------------------- /C Programs/string in structure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/string in structure.c -------------------------------------------------------------------------------- /C Programs/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/string.c -------------------------------------------------------------------------------- /C Programs/structure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/structure.c -------------------------------------------------------------------------------- /C Programs/studentslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/studentslist.c -------------------------------------------------------------------------------- /C Programs/sum if the first n natural numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/sum if the first n natural numbers.c -------------------------------------------------------------------------------- /C Programs/sum of digits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/sum of digits.c -------------------------------------------------------------------------------- /C Programs/swap_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/swap_number.c -------------------------------------------------------------------------------- /C Programs/tem into cdegrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/tem into cdegrees.c -------------------------------------------------------------------------------- /C Programs/tempCodeRunnerFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/tempCodeRunnerFile.c -------------------------------------------------------------------------------- /C Programs/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/test.c -------------------------------------------------------------------------------- /C Programs/test.txt: -------------------------------------------------------------------------------- 1 | Hello VJ! 2 | I am Happy to help you today 3 | -------------------------------------------------------------------------------- /C Programs/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/test1.c -------------------------------------------------------------------------------- /C Programs/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/test2.txt -------------------------------------------------------------------------------- /C Programs/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/test3.txt -------------------------------------------------------------------------------- /C Programs/test4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/test4.txt -------------------------------------------------------------------------------- /C Programs/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/testing.c -------------------------------------------------------------------------------- /C Programs/voting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/voting.c -------------------------------------------------------------------------------- /C Programs/voting_age.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/C Programs/voting_age.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/C-programs/HEAD/README.md --------------------------------------------------------------------------------