65,211
社区成员
发帖
与我相关
我的任务
分享
#include <iostream>
printf("out of main\n");
int main()
{
system("pause");
return 0;
}
#include <iostream>
int a = printf("out of main\n");
int main()
{
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int f()
{
return 1;
}
int a = f();
int main()
{
cout << a << endl;
system("pause");
return 0;
}