#include <iostream>struct A { int x; };void foo(A a) { std::cout << a.x << std::endl;}int main() { A a; foo(a); foo(A());}
Standard input is empty
134514720 0
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!