Skip to content

Latest commit

 

History

History

0x03-debugging

DEBUGGING PROGRAMS

Debugging is the process of finding and fixing errors in software that prevent it from running correctly.

These project contains programs which aim to test the correctness of other programs.

0-main.c

This program tests a function that prints if integer is positive or negative

1-main.c

This program stops an incoming Infinite loop \o/

2-largest_number

Fixed a program that returns the largest of three integers

3-print_remaining_days.c

Fixed a program that recieves the following arguments:

  • month: month of the year in number
  • day: the day of the year
  • year: year and prints the remaining days in the year (taking leap years into account)