一般形式:return(<表达式>)1.主要用于终止包含它的函数的执行2.若终止的为主函数,则主程序结束 int fun(){ int r = 5; return r;}int main(){ ret = fun(); printf("ret=%d\n",ret);}