RT,请问为什么int函数不写return的话,在本地不会有问题,但是在OJ上(比如cf)会报错?
#include<bits/stdc++.h> using namespace std; int a() { } int main() { a(); return 0; }