bool func(int x) { if (x==2) return true; else return false; } ------------------------ bool func(int x) { if (x==2) return true; return false; }