以下C++代码的输出结果是什么?
#include
void func(int a, int b, int c) {
std::cout << a << " " << b << " " << c << std::endl;}
int main() {
int x = 2, y = 3, z = 4;
func(y, x, z);
return 0;}