Write the C code that builds a new struct called Halloween t
Write the C++ code that builds a new struct called Halloween that is the node for a linked list. The node should hold a string which is the address of a house and a Boolean that says if it was “tricked” or “treated”.
Solution
#include<iostream>
using namespace std;
struct Halloween
{
String address;
boolean tOrT;
Halloween *next;
};

