#include#includeusing namespace std;
int main(){int a ,b ,c = 1;printf("%d\n%d\n%d\n",a,b,c);//cout<<a<<b<<c;
}
这个代码输出的结果是101为什么a和c同时变成了1?
是随机的吗