● MakeFile should be renamed to Makefile
● “Makefile:2: *** missing separator. Stop.”. In line 2 there should be proper indentation
● Makefile: -g should be added for debugger to work
1. [Link]: In function ‘bool* is_prime(short unsigned int)’:
[Link]:15: error: cannot convert ‘bool’ to ‘bool*’ in assignment
15 | replaced the pointer with bool, since its easy and also its unnecessary to use pointer in
bool
2. Added #include <climits> to fix error:
a. ‘INT_MAX’ was not declared in this scope 36 | int arr[INT_MAX - n];