‘Structs and classes

‘Structs and classes

Question:
Please examine my code and tell me what I am doing wrong!

This is the first part of my program:

#include #include class LinkedLst{	public:		LinkedLst();					//Constructor		void AddToFront(int Value);		//Add Value to the front of the list		void Print();					//Print the list elements		void Average();					//Calculate and print the average of the list elements		void Search(int X);				//Search the list for X, output its position or the message”Not Found!”	private:		struct Node		{			int Data;			Node *Link;		};				Node *FirstNode;};LinkedLst::LinkedLst(){	FirstNode = ‘Null’;}
This is the error I am getting:
C:c++proj7.cpp(33) : error C2446: ‘=’ : no conversion from ‘const int’ to ‘struct LinkedLst::Node *’ (new behavior; please see help)

Answer:
The line

FirstNode = ‘Null’;
is syntatically wrong.

When you write anything inside single quotes, that type is treated as a char constant. The correct predefined const forassigning to pointers is NULL. Also, the language defines 0 as being a pointervalue different from any other. So I prefer to just assign 0 to mypointers.

So you’ll want to write that statement as:

FirstNode = NULL;
or
FirstNode = 0;

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular