#!/usr/local/bin/tcc int isleap(int y) { return (y%25>0>y%4|y%16<1) } int main(){ printf("isleap(%d) == %d", 2000, isleap(2000)) }