今天挑bug的时候偶然发现这样的语句能过编译且有输出
#include<bits/stdc++.h> using namespace std; int main(){ cout<<(4,6,5)/2; }
那么这个中间的(4,6,5)到底是什么东西呢
(4,6,5)