├── Accept year and check year is leap or not ├── Accept_character_and_check_letter_or_not.c ├── Accept_character_and_display_ASCII_value.c ├── Accept_character_and_display_next_and_previous_character.c ├── Accept_number_and_check_even_or_not.c ├── Accept_number_and_display_perfect_or_not.c ├── Accept_three_numbers_and_display_multiplication.c ├── Accept_two_numbers_and_display_subtraction.c ├── Accept_two_numbers_and_swap.c ├── Accept_uppercase_character_and_print_lowercase_character.c ├── Area_of_square.c ├── Area_of_triangle.c ├── README.md ├── Volume_of_cuboid.c ├── Volume_of_sphere.c ├── cube_recursive_fun.c ├── factorial_recursive_fun.c ├── merge_recursive.c └── sum_recursive_fun.c /Accept year and check year is leap or not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept year and check year is leap or not -------------------------------------------------------------------------------- /Accept_character_and_check_letter_or_not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_character_and_check_letter_or_not.c -------------------------------------------------------------------------------- /Accept_character_and_display_ASCII_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_character_and_display_ASCII_value.c -------------------------------------------------------------------------------- /Accept_character_and_display_next_and_previous_character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_character_and_display_next_and_previous_character.c -------------------------------------------------------------------------------- /Accept_number_and_check_even_or_not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_number_and_check_even_or_not.c -------------------------------------------------------------------------------- /Accept_number_and_display_perfect_or_not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_number_and_display_perfect_or_not.c -------------------------------------------------------------------------------- /Accept_three_numbers_and_display_multiplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_three_numbers_and_display_multiplication.c -------------------------------------------------------------------------------- /Accept_two_numbers_and_display_subtraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_two_numbers_and_display_subtraction.c -------------------------------------------------------------------------------- /Accept_two_numbers_and_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_two_numbers_and_swap.c -------------------------------------------------------------------------------- /Accept_uppercase_character_and_print_lowercase_character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Accept_uppercase_character_and_print_lowercase_character.c -------------------------------------------------------------------------------- /Area_of_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Area_of_square.c -------------------------------------------------------------------------------- /Area_of_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Area_of_triangle.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Basic-C-Programs -------------------------------------------------------------------------------- /Volume_of_cuboid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Volume_of_cuboid.c -------------------------------------------------------------------------------- /Volume_of_sphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/Volume_of_sphere.c -------------------------------------------------------------------------------- /cube_recursive_fun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/cube_recursive_fun.c -------------------------------------------------------------------------------- /factorial_recursive_fun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/factorial_recursive_fun.c -------------------------------------------------------------------------------- /merge_recursive.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sum_recursive_fun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavikotkar2004/Basic-C-Programs/HEAD/sum_recursive_fun.c --------------------------------------------------------------------------------