Skip to content

Latest commit

 

History

History

0x03-debugging

0x03. C - Debugging

Description

What you should learn from this project:

  • What is debugging
  • What are some methods of debugging manually
  • How to read the error messages

  • In most projects, we often give you only one main file to test with. For example, this main file is a test for a postitive_or_negative() function similar to the one you worked with in an earlier C project:
  • Copy this main file. Comment out (don’t delete it!) the part of the code that is causing the output to go into an infinite loop.
  • This program prints the largest of three integers.
  • This program converts a date to the day of year and determines how many days are left in the year, taking leap year into consideration.

Author