42_EXAM icon indicating copy to clipboard operation
42_EXAM copied to clipboard

grademe exam 03 accepts a wrong signature for ft_printf exercise

Open dabi-rac opened this issue 9 months ago • 0 comments

the problem is the space after the three dots:

examshell only accepts :

int ft_printf(const char * format, ... )

meanwhile 42_exam gives success without the space after the dots

int ft_printf(const char * format, ...)

grademe behaviour is wrong and doesnt follow the subject signature of the function, it was very frustrating to me i had to do the exam twice for this small error. So if i can help other students, welcome.

dabi-rac avatar May 16 '24 17:05 dabi-rac