// if even then return 1 else return 0 int even_odd ( int num) { if (num & 1) return 0; return 1; }
Separate names with a comma.