# Find Maximum Number
## Project Description
This project is a C program that demonstrates how to find the maximum number between two user-provided integers using user-defined functions. It highlights the concepts of:
- Function declaration and definition
- Parameter passing
- Conditional statements
- Return values
## Getting Started
-
Prerequisites:
- A C compiler (e.g., GCC, Clang)
- A text editor or IDE
-
Compilation:
- Open a terminal and navigate to the project directory.
- Compile the program using your C compiler:
gcc find_max.c -o find_max
-
Execution:
- Run the executable:
./find_max
- Run the executable:
## Usage
- The program will prompt you to enter two numbers.
- Enter the numbers and press Enter.
- The program will calculate and display the maximum number.
## File Structure
find_max.c: Contains the source code of the programREADME.md(this file): Provides project information and instructions
## Functions
int find_max(int num1, int num2): Takes two integer arguments and returns the larger one.
## Author
kingzykesh
## License
MIT