From 73f07ebff7508d9c84a057de5aed162ac1c3da32 Mon Sep 17 00:00:00 2001 From: Asahel Date: Mon, 12 Feb 2024 09:14:39 -0800 Subject: Not sure if I commited. Making sure. --- InClassExercise 9/Node.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 InClassExercise 9/Node.h (limited to 'InClassExercise 9/Node.h') diff --git a/InClassExercise 9/Node.h b/InClassExercise 9/Node.h new file mode 100644 index 0000000..b0ba7cd --- /dev/null +++ b/InClassExercise 9/Node.h @@ -0,0 +1,14 @@ +#ifndef NODE_H +#define NODE_H + +struct Node { + int data; + Node* _next; + +}; + + + + +#endif // !NODE_H + -- cgit v1.2.3