├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── 01_variable_constant_keyword ├── 01_area_of_rectangle.c ├── 01_area_of_rectangle.exe ├── 02_area_of_circle.c ├── 02_area_of_circle.exe ├── 03 celcius to farenheit.c ├── 03 celcius to farenheit.exe ├── 03 celcius to farenheit.o ├── 04 simple interest.c ├── Variables.c ├── a.exe ├── hello.c ├── hello.exe ├── take input by scanf.c └── variables_constant_keyword.c ├── 02_operators ├── 01_Divisibility test.c ├── 01_Divisibility test.exe ├── 01_Divisibility test.o ├── 04_step evaluation.c ├── 04_step evaluation.exe ├── 04_step evaluation.o └── Operator precedence.c ├── 03_conditional_statements ├── 01 output program.c ├── 02 student mark.c ├── 03 income tax.c ├── 04 leap year.c ├── 05 character chek.c ├── 06 find greatest number.c ├── 06 find greatest number.exe ├── 06 find greatest number.o ├── check even or odd.c ├── else if.c ├── grade of student marks.c ├── logical operator.c └── switch case.c ├── 04_loop_control_instructions ├── 01 multiplication table.c ├── 01 multiplication table.exe ├── 01 multiplication table.o ├── 02 reverse multiplication table.c ├── 02 reverse multiplication table.exe ├── 02 reverse multiplication table.o ├── 05 sum natural numbers.c ├── 05 sum natural numbers.exe ├── 05 sum natural numbers.o ├── 08 factorial number.c ├── 08 factorial number.exe ├── 08 factorial number.o ├── 10 checking prime numbers.c ├── 10 checking prime numbers.exe ├── 10 checking prime numbers.o ├── break loop.c ├── compound assignment.c ├── quiz 02_natural number.c ├── quiz 03_for loop number.c └── quiz 1_natural number print.c ├── 05_function ├── 01 average of number.c ├── 01 average of number.exe ├── 01 average of number.o ├── 02 celcius to fahrenheit.c ├── 02 celcius to fahrenheit.exe ├── 02 celcius to fahrenheit.o ├── 04 fibonacci series.c ├── 04 fibonacci series.exe ├── 04 fibonacci series.o ├── 06 calculate first n natural numbers.c ├── 06 calculate first n natural numbers.exe ├── 06 calculate first n natural numbers.o ├── 07 print pattern.c ├── 07 print pattern.exe ├── 07 print pattern.o ├── calculate force.c ├── calculate force.exe ├── calculate force.o ├── parameter & argument.c ├── parameter & argument.exe ├── parameter & argument.o ├── quiz 01.c ├── quiz 01.exe └── quiz 01.o ├── 06 pointers ├── 01 use address get variable.c ├── 02 address same or not.c ├── 04 sum & average.c ├── 04 sum & average.exe ├── 04 sum & average.o ├── 05 ptr to ptr.c ├── 05 ptr to ptr.exe ├── 05 ptr to ptr.o └── value & address.c ├── 07 arrays ├── 01 arithmatic array.c ├── 02 multiplication table.c ├── 03 reverse array by function.c ├── 04 multiple table.c ├── 05 3d array.c ├── array in function.c ├── array input.c ├── input using loops.c └── multi dimensional array.c ├── 08 strings ├── gets & puts.c ├── gets & puts.exe ├── gets & puts.o ├── input string.c ├── str cat.c ├── str cmp.c ├── str cmp.exe ├── str cmp.o ├── string in easy way.c ├── string with loop.c ├── strlen.c └── strspy.c ├── 09 structure ├── 01 two dimensional vector.c ├── 02 sum in function.c ├── 03 date & time comparision.c ├── array in struct.c ├── function in struct.c ├── input struct.c ├── intro struct.c ├── other way array in struct.c ├── pointer to struct.c └── typedef in struct.c ├── C project ├── ATM BANKING SYSTEM │ ├── ATM_BANKING_IN_C.c │ ├── ATM_BANKING_IN_C.exe │ └── ATM_BANKING_IN_C.o ├── Calender App in C │ ├── Calender_App_C_Programming.c │ ├── Calender_App_C_Programming.exe │ └── Calender_App_C_Programming.o ├── Phone Book system in C │ ├── contact.txt │ ├── simplephone.c │ ├── simplephone.exe │ └── simplephone.o └── Stop Watch in C │ ├── Stop_Watch_by_C_language.c │ ├── Stop_Watch_by_C_language.exe │ └── Stop_Watch_by_C_language.o ├── README.md ├── data_structure_algorithm ├── binary_search.cpp ├── binary_search.exe ├── linear_search.cpp ├── linear_search.exe ├── selection_sort.cpp ├── selection_sort.exe ├── space_complexity.cpp ├── space_complexity.exe ├── time_complexity.cpp └── time_complexity.exe ├── file Input & Output ├── file open.c ├── file open.exe ├── file open.o └── simple.txt └── problem_solving ├── ps01.c ├── ps01.exe ├── ps02.cpp ├── ps02.exe ├── ps03_odd_even.cpp ├── ps03_odd_even.exe ├── ps04_leap_year.cpp ├── ps04_leap_year.exe ├── ps05_simple_loop.cpp ├── ps05_simple_loop.exe ├── ps06_piramid_pattern.cpp ├── ps06_piramid_pattern.exe ├── ps07_array_string.cpp ├── ps07_array_string.exe ├── ps08_string_problem.cpp ├── ps08_string_problem.exe ├── string_library_function.cpp └── string_library_function.exe /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /01_variable_constant_keyword/01_area_of_rectangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/01_area_of_rectangle.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/01_area_of_rectangle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/01_area_of_rectangle.exe -------------------------------------------------------------------------------- /01_variable_constant_keyword/02_area_of_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/02_area_of_circle.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/02_area_of_circle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/02_area_of_circle.exe -------------------------------------------------------------------------------- /01_variable_constant_keyword/03 celcius to farenheit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/03 celcius to farenheit.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/03 celcius to farenheit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/03 celcius to farenheit.exe -------------------------------------------------------------------------------- /01_variable_constant_keyword/03 celcius to farenheit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/03 celcius to farenheit.o -------------------------------------------------------------------------------- /01_variable_constant_keyword/04 simple interest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/04 simple interest.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/Variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/Variables.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/a.exe -------------------------------------------------------------------------------- /01_variable_constant_keyword/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/hello.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/hello.exe -------------------------------------------------------------------------------- /01_variable_constant_keyword/take input by scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/take input by scanf.c -------------------------------------------------------------------------------- /01_variable_constant_keyword/variables_constant_keyword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/01_variable_constant_keyword/variables_constant_keyword.c -------------------------------------------------------------------------------- /02_operators/01_Divisibility test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/01_Divisibility test.c -------------------------------------------------------------------------------- /02_operators/01_Divisibility test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/01_Divisibility test.exe -------------------------------------------------------------------------------- /02_operators/01_Divisibility test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/01_Divisibility test.o -------------------------------------------------------------------------------- /02_operators/04_step evaluation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/04_step evaluation.c -------------------------------------------------------------------------------- /02_operators/04_step evaluation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/04_step evaluation.exe -------------------------------------------------------------------------------- /02_operators/04_step evaluation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/04_step evaluation.o -------------------------------------------------------------------------------- /02_operators/Operator precedence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/02_operators/Operator precedence.c -------------------------------------------------------------------------------- /03_conditional_statements/01 output program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/01 output program.c -------------------------------------------------------------------------------- /03_conditional_statements/02 student mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/02 student mark.c -------------------------------------------------------------------------------- /03_conditional_statements/03 income tax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/03 income tax.c -------------------------------------------------------------------------------- /03_conditional_statements/04 leap year.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/04 leap year.c -------------------------------------------------------------------------------- /03_conditional_statements/05 character chek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/05 character chek.c -------------------------------------------------------------------------------- /03_conditional_statements/06 find greatest number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/06 find greatest number.c -------------------------------------------------------------------------------- /03_conditional_statements/06 find greatest number.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/06 find greatest number.exe -------------------------------------------------------------------------------- /03_conditional_statements/06 find greatest number.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/06 find greatest number.o -------------------------------------------------------------------------------- /03_conditional_statements/check even or odd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/check even or odd.c -------------------------------------------------------------------------------- /03_conditional_statements/else if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/else if.c -------------------------------------------------------------------------------- /03_conditional_statements/grade of student marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/grade of student marks.c -------------------------------------------------------------------------------- /03_conditional_statements/logical operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/logical operator.c -------------------------------------------------------------------------------- /03_conditional_statements/switch case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/03_conditional_statements/switch case.c -------------------------------------------------------------------------------- /04_loop_control_instructions/01 multiplication table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/01 multiplication table.c -------------------------------------------------------------------------------- /04_loop_control_instructions/01 multiplication table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/01 multiplication table.exe -------------------------------------------------------------------------------- /04_loop_control_instructions/01 multiplication table.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/01 multiplication table.o -------------------------------------------------------------------------------- /04_loop_control_instructions/02 reverse multiplication table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/02 reverse multiplication table.c -------------------------------------------------------------------------------- /04_loop_control_instructions/02 reverse multiplication table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/02 reverse multiplication table.exe -------------------------------------------------------------------------------- /04_loop_control_instructions/02 reverse multiplication table.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/02 reverse multiplication table.o -------------------------------------------------------------------------------- /04_loop_control_instructions/05 sum natural numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/05 sum natural numbers.c -------------------------------------------------------------------------------- /04_loop_control_instructions/05 sum natural numbers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/05 sum natural numbers.exe -------------------------------------------------------------------------------- /04_loop_control_instructions/05 sum natural numbers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/05 sum natural numbers.o -------------------------------------------------------------------------------- /04_loop_control_instructions/08 factorial number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/08 factorial number.c -------------------------------------------------------------------------------- /04_loop_control_instructions/08 factorial number.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/08 factorial number.exe -------------------------------------------------------------------------------- /04_loop_control_instructions/08 factorial number.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/08 factorial number.o -------------------------------------------------------------------------------- /04_loop_control_instructions/10 checking prime numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/10 checking prime numbers.c -------------------------------------------------------------------------------- /04_loop_control_instructions/10 checking prime numbers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/10 checking prime numbers.exe -------------------------------------------------------------------------------- /04_loop_control_instructions/10 checking prime numbers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/10 checking prime numbers.o -------------------------------------------------------------------------------- /04_loop_control_instructions/break loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/break loop.c -------------------------------------------------------------------------------- /04_loop_control_instructions/compound assignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/compound assignment.c -------------------------------------------------------------------------------- /04_loop_control_instructions/quiz 02_natural number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/quiz 02_natural number.c -------------------------------------------------------------------------------- /04_loop_control_instructions/quiz 03_for loop number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/quiz 03_for loop number.c -------------------------------------------------------------------------------- /04_loop_control_instructions/quiz 1_natural number print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/04_loop_control_instructions/quiz 1_natural number print.c -------------------------------------------------------------------------------- /05_function/01 average of number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/01 average of number.c -------------------------------------------------------------------------------- /05_function/01 average of number.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/01 average of number.exe -------------------------------------------------------------------------------- /05_function/01 average of number.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/01 average of number.o -------------------------------------------------------------------------------- /05_function/02 celcius to fahrenheit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/02 celcius to fahrenheit.c -------------------------------------------------------------------------------- /05_function/02 celcius to fahrenheit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/02 celcius to fahrenheit.exe -------------------------------------------------------------------------------- /05_function/02 celcius to fahrenheit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/02 celcius to fahrenheit.o -------------------------------------------------------------------------------- /05_function/04 fibonacci series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/04 fibonacci series.c -------------------------------------------------------------------------------- /05_function/04 fibonacci series.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/04 fibonacci series.exe -------------------------------------------------------------------------------- /05_function/04 fibonacci series.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/04 fibonacci series.o -------------------------------------------------------------------------------- /05_function/06 calculate first n natural numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/06 calculate first n natural numbers.c -------------------------------------------------------------------------------- /05_function/06 calculate first n natural numbers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/06 calculate first n natural numbers.exe -------------------------------------------------------------------------------- /05_function/06 calculate first n natural numbers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/06 calculate first n natural numbers.o -------------------------------------------------------------------------------- /05_function/07 print pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/07 print pattern.c -------------------------------------------------------------------------------- /05_function/07 print pattern.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/07 print pattern.exe -------------------------------------------------------------------------------- /05_function/07 print pattern.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/07 print pattern.o -------------------------------------------------------------------------------- /05_function/calculate force.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/calculate force.c -------------------------------------------------------------------------------- /05_function/calculate force.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/calculate force.exe -------------------------------------------------------------------------------- /05_function/calculate force.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/calculate force.o -------------------------------------------------------------------------------- /05_function/parameter & argument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/parameter & argument.c -------------------------------------------------------------------------------- /05_function/parameter & argument.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/parameter & argument.exe -------------------------------------------------------------------------------- /05_function/parameter & argument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/parameter & argument.o -------------------------------------------------------------------------------- /05_function/quiz 01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/quiz 01.c -------------------------------------------------------------------------------- /05_function/quiz 01.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/quiz 01.exe -------------------------------------------------------------------------------- /05_function/quiz 01.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/05_function/quiz 01.o -------------------------------------------------------------------------------- /06 pointers/01 use address get variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/01 use address get variable.c -------------------------------------------------------------------------------- /06 pointers/02 address same or not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/02 address same or not.c -------------------------------------------------------------------------------- /06 pointers/04 sum & average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/04 sum & average.c -------------------------------------------------------------------------------- /06 pointers/04 sum & average.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/04 sum & average.exe -------------------------------------------------------------------------------- /06 pointers/04 sum & average.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/04 sum & average.o -------------------------------------------------------------------------------- /06 pointers/05 ptr to ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/05 ptr to ptr.c -------------------------------------------------------------------------------- /06 pointers/05 ptr to ptr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/05 ptr to ptr.exe -------------------------------------------------------------------------------- /06 pointers/05 ptr to ptr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/05 ptr to ptr.o -------------------------------------------------------------------------------- /06 pointers/value & address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/06 pointers/value & address.c -------------------------------------------------------------------------------- /07 arrays/01 arithmatic array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/01 arithmatic array.c -------------------------------------------------------------------------------- /07 arrays/02 multiplication table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/02 multiplication table.c -------------------------------------------------------------------------------- /07 arrays/03 reverse array by function.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07 arrays/04 multiple table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/04 multiple table.c -------------------------------------------------------------------------------- /07 arrays/05 3d array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/05 3d array.c -------------------------------------------------------------------------------- /07 arrays/array in function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/array in function.c -------------------------------------------------------------------------------- /07 arrays/array input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/array input.c -------------------------------------------------------------------------------- /07 arrays/input using loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/input using loops.c -------------------------------------------------------------------------------- /07 arrays/multi dimensional array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/07 arrays/multi dimensional array.c -------------------------------------------------------------------------------- /08 strings/gets & puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/gets & puts.c -------------------------------------------------------------------------------- /08 strings/gets & puts.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/gets & puts.exe -------------------------------------------------------------------------------- /08 strings/gets & puts.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/gets & puts.o -------------------------------------------------------------------------------- /08 strings/input string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/input string.c -------------------------------------------------------------------------------- /08 strings/str cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/str cat.c -------------------------------------------------------------------------------- /08 strings/str cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/str cmp.c -------------------------------------------------------------------------------- /08 strings/str cmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/str cmp.exe -------------------------------------------------------------------------------- /08 strings/str cmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/str cmp.o -------------------------------------------------------------------------------- /08 strings/string in easy way.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/string in easy way.c -------------------------------------------------------------------------------- /08 strings/string with loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/string with loop.c -------------------------------------------------------------------------------- /08 strings/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/strlen.c -------------------------------------------------------------------------------- /08 strings/strspy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/08 strings/strspy.c -------------------------------------------------------------------------------- /09 structure/01 two dimensional vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/01 two dimensional vector.c -------------------------------------------------------------------------------- /09 structure/02 sum in function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/02 sum in function.c -------------------------------------------------------------------------------- /09 structure/03 date & time comparision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/03 date & time comparision.c -------------------------------------------------------------------------------- /09 structure/array in struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/array in struct.c -------------------------------------------------------------------------------- /09 structure/function in struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/function in struct.c -------------------------------------------------------------------------------- /09 structure/input struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/input struct.c -------------------------------------------------------------------------------- /09 structure/intro struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/intro struct.c -------------------------------------------------------------------------------- /09 structure/other way array in struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/other way array in struct.c -------------------------------------------------------------------------------- /09 structure/pointer to struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/pointer to struct.c -------------------------------------------------------------------------------- /09 structure/typedef in struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/09 structure/typedef in struct.c -------------------------------------------------------------------------------- /C project/ATM BANKING SYSTEM/ATM_BANKING_IN_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/ATM BANKING SYSTEM/ATM_BANKING_IN_C.c -------------------------------------------------------------------------------- /C project/ATM BANKING SYSTEM/ATM_BANKING_IN_C.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/ATM BANKING SYSTEM/ATM_BANKING_IN_C.exe -------------------------------------------------------------------------------- /C project/ATM BANKING SYSTEM/ATM_BANKING_IN_C.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/ATM BANKING SYSTEM/ATM_BANKING_IN_C.o -------------------------------------------------------------------------------- /C project/Calender App in C/Calender_App_C_Programming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Calender App in C/Calender_App_C_Programming.c -------------------------------------------------------------------------------- /C project/Calender App in C/Calender_App_C_Programming.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Calender App in C/Calender_App_C_Programming.exe -------------------------------------------------------------------------------- /C project/Calender App in C/Calender_App_C_Programming.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Calender App in C/Calender_App_C_Programming.o -------------------------------------------------------------------------------- /C project/Phone Book system in C/contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Phone Book system in C/contact.txt -------------------------------------------------------------------------------- /C project/Phone Book system in C/simplephone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Phone Book system in C/simplephone.c -------------------------------------------------------------------------------- /C project/Phone Book system in C/simplephone.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Phone Book system in C/simplephone.exe -------------------------------------------------------------------------------- /C project/Phone Book system in C/simplephone.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Phone Book system in C/simplephone.o -------------------------------------------------------------------------------- /C project/Stop Watch in C/Stop_Watch_by_C_language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Stop Watch in C/Stop_Watch_by_C_language.c -------------------------------------------------------------------------------- /C project/Stop Watch in C/Stop_Watch_by_C_language.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Stop Watch in C/Stop_Watch_by_C_language.exe -------------------------------------------------------------------------------- /C project/Stop Watch in C/Stop_Watch_by_C_language.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/C project/Stop Watch in C/Stop_Watch_by_C_language.o -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/README.md -------------------------------------------------------------------------------- /data_structure_algorithm/binary_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/binary_search.cpp -------------------------------------------------------------------------------- /data_structure_algorithm/binary_search.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/binary_search.exe -------------------------------------------------------------------------------- /data_structure_algorithm/linear_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/linear_search.cpp -------------------------------------------------------------------------------- /data_structure_algorithm/linear_search.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/linear_search.exe -------------------------------------------------------------------------------- /data_structure_algorithm/selection_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/selection_sort.cpp -------------------------------------------------------------------------------- /data_structure_algorithm/selection_sort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/selection_sort.exe -------------------------------------------------------------------------------- /data_structure_algorithm/space_complexity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/space_complexity.cpp -------------------------------------------------------------------------------- /data_structure_algorithm/space_complexity.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/space_complexity.exe -------------------------------------------------------------------------------- /data_structure_algorithm/time_complexity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/time_complexity.cpp -------------------------------------------------------------------------------- /data_structure_algorithm/time_complexity.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/data_structure_algorithm/time_complexity.exe -------------------------------------------------------------------------------- /file Input & Output/file open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/file Input & Output/file open.c -------------------------------------------------------------------------------- /file Input & Output/file open.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/file Input & Output/file open.exe -------------------------------------------------------------------------------- /file Input & Output/file open.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/file Input & Output/file open.o -------------------------------------------------------------------------------- /file Input & Output/simple.txt: -------------------------------------------------------------------------------- 1 | 1202 -------------------------------------------------------------------------------- /problem_solving/ps01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps01.c -------------------------------------------------------------------------------- /problem_solving/ps01.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps01.exe -------------------------------------------------------------------------------- /problem_solving/ps02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps02.cpp -------------------------------------------------------------------------------- /problem_solving/ps02.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps02.exe -------------------------------------------------------------------------------- /problem_solving/ps03_odd_even.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps03_odd_even.cpp -------------------------------------------------------------------------------- /problem_solving/ps03_odd_even.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps03_odd_even.exe -------------------------------------------------------------------------------- /problem_solving/ps04_leap_year.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps04_leap_year.cpp -------------------------------------------------------------------------------- /problem_solving/ps04_leap_year.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps04_leap_year.exe -------------------------------------------------------------------------------- /problem_solving/ps05_simple_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps05_simple_loop.cpp -------------------------------------------------------------------------------- /problem_solving/ps05_simple_loop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps05_simple_loop.exe -------------------------------------------------------------------------------- /problem_solving/ps06_piramid_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps06_piramid_pattern.cpp -------------------------------------------------------------------------------- /problem_solving/ps06_piramid_pattern.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps06_piramid_pattern.exe -------------------------------------------------------------------------------- /problem_solving/ps07_array_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps07_array_string.cpp -------------------------------------------------------------------------------- /problem_solving/ps07_array_string.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps07_array_string.exe -------------------------------------------------------------------------------- /problem_solving/ps08_string_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps08_string_problem.cpp -------------------------------------------------------------------------------- /problem_solving/ps08_string_problem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/ps08_string_problem.exe -------------------------------------------------------------------------------- /problem_solving/string_library_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/string_library_function.cpp -------------------------------------------------------------------------------- /problem_solving/string_library_function.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifOnTheCode/Cpp-and-projects/HEAD/problem_solving/string_library_function.exe --------------------------------------------------------------------------------