struct Node { int const value; Node* next; }; int main() { /* You may initialize these variables, but you may not create any more than curr and other */ Node* curr { }; Node* temp { }; }