This project focuses on debugging in C. It covers various techniques and tools for identifying and fixing bugs in your code. The project aims to help you understand common errors and how to resolve them effectively.
- What is debugging.
- What are some methods of debugging manually.
- How to read the error messages.
Task Name | File | Description |
---|---|---|
Multiple mains | 0-main.c | Tests a function that prints if an integer is positive or negative. |
Like, comment, subscribe | 1-main.c | Comments out (don’t delete it!) the part of the code that is causing the output to go into an infinite loop. |
0 > 972? | 2-largest_number.c | Fixes the code in 2-largest_number.c so that it correctly prints out the largest of three numbers, no matter the case. |
Leap year | 3-print_remaining_days.c | Fixes the print_remaining_days() function so that the output works correctly for all dates and all leap years. |