Update BubbleSort.c
Made it a user-defined array and the algorithm used for bubble sort was different and probably wrong, used a better and more efficient one for sidewise comparison. You compared one element with the entire array and swapped it, that was I suppose selection sort.
Merge pull request #101 from starrylight90/patch-5
Update BubbleSort.c
Made it a user-defined array and the algorithm used for bubble sort was different and probably wrong, used a better and more efficient one for sidewise comparison. You compared one element with the entire array and swapped it, that was I suppose selection sort.
Update Calculator.c
Operator data type casting was happening, keeping it uniform throughout the entire is beneficial.
Merge pull request #102 from starrylight90/patch-6
Update Calculator.c
Operator data type casting was happening, keeping it uniform throughout the entire is beneficial.
Update
Ununiformity found in the program. Missing return 0 as main is defined with int data type.
Merge pull request #103 from starrylight90/patch-7
Update
Ununiformity found in the program. Missing return 0 as main is defined with int data type.