find 中使用-exec 后为何报错?

find 中使用-exec 后为何报错?

我使用find / -iname core -exec rm {};\   为何总报missing argument
find / -name core -exec rm -f {} \;
建议用-ok代替-exec,有提示的。