Login
From:
godbolt.org
(Uncensored)
subscribe
Compiler Explorer
https://godbolt.org/z/GeK6Trfx6
links
backlinks
Roast topics
Find topics
Find it!
bool is_leap_year1(uint32_t y) { if ((y % 4) != 0) return false; if ((y % 25) != 0) return true; if ((y % 16) == 0) return true; return false; }