dysize X
1: 2: int dysize(year) 3: int year; 4: { 5: if (!(year % 4)) 6: if (year % 400) 7: return(366); 8: return(365); 9: }