#include <iostream> using namespace std; // Write your struct and dynamic allocation code here struct SensorData{ int x; int y; int z; }; int main() { int x, y, z; cin >> x >> y >> z; SensorData *p = new SensorData; p->x = x; p->y = y; p->z = z; cout << p->x << " " << p->y << " " << p->z; delete p; return 0; }
Test Cases
Test Results
Input
3 4 5
Expected Output