Fork this repository
Click the "Fork" button at the top right of this page to create your own copy of the repository.Clone your forked repository
Copy the URL of your fork and run the following command in your terminal:git clone <your-fork-url>Replace
<your-fork-url>with the URL you copied.Fix the error in the code
Open themain.cfile in your code editor.
Find and fix the logical error in the code.Commit and push your changes
After fixing the error, commit your changes and push them to your forked repository:git add main.c git commit -m "Fix error in sumArray function" git pushOpen a Pull Request
Go to your forked repository on GitHub and click "Compare & pull request" to submit your changes for review.
Good luck!