1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <iostream> using namespace std; //this struct is POD struct point3D { int x; int y; int z; }; //point3D is POD, so we can initialize it as point3D p = {1,2,3}; int main() { return 0; } |
I2luY2x1ZGUgPGlvc3RyZWFtPgoKdXNpbmcgbmFtZXNwYWNlIHN0ZDsKCi8vdGhpcyBzdHJ1Y3QgaXMgUE9ECnN0cnVjdCBwb2ludDNECnsKICAgaW50IHg7CiAgIGludCB5OwogICBpbnQgejsKfTsKCi8vcG9pbnQzRCBpcyBQT0QsIHNvIHdlIGNhbiBpbml0aWFsaXplIGl0IGFzCnBvaW50M0QgcCA9IHsxLDIsM307CgppbnQgbWFpbigpIHsKCQoJcmV0dXJuIDA7Cn0=
-
upload with new input
-
result: Success time: 0s memory: 2848 kB returned value: 0
-
result: Success time: 0s memory: 2720 kB returned value: 0


