* Update binary_to_decimal.c
1. Removed the unused variable remainder.
2. Changed the variable name number to binary_number for clarity.
3. Removed the initialisation of number and temp since they are assigned values later.
4. Removed the newline character from the printf statement to improve readability.
5.Added a return statement at the end of main function.
* Update binary_to_decimal.c