Skip to content

Commit

Permalink
Renamed the directory to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelogboye committed Jul 13, 2023
1 parent 1cea339 commit fa6bc0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samuelogboye/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Calculator
This is a simple calculator program written in C. It allows users to perform basic and advanced mathematical operations. Users can choose between addition, subtraction, multiplication, division, exponentiation, and advanced functionalities such as square root, logarithm, and trigonometric operations.
This is a simple calculator program written in C language. It allows users to perform basic and advanced mathematical operations. Users can choose between addition, subtraction, multiplication, division, exponentiation, and advanced functionalities such as square root, logarithm, and trigonometric operations.

## Getting Started
To compile and run the calculator program, follow these steps:
Expand Down
2 changes: 1 addition & 1 deletion samuelogboye/calc.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* OperandChoice - Structure representing the choice of operands
*
* @operand: The selected operand
* @operand: The selected operands
* @name: The name associated with the choice
* @first_number: The first number for the operation
*/
Expand Down
2 changes: 1 addition & 1 deletion samuelogboye/calculator.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* BasicOp - a function that performs basic operations
* @first_num: the first number to work with
* @first_num: first number to work with
* @second_num: the second number to work with
* @operand: operand to perform the operation
* Return: the final result
Expand Down

0 comments on commit fa6bc0a

Please sign in to comment.