class Node
{
public:
Node();
void insertnode(int data);
void deletenode(int index);
void printnode();
void sortnode();
Node<t>* fetchnodeatindex(int index);
private:
t data;
int index;
Node<t>* next;
};
typedef Node<t>* nodeptr; <--Error is here
#endif /* Node_h */ //
Hey everyone,
Can someone please explain to me why I am receiving an error here?
Thank you so much
Note: I highlighted the text and pressed code but it doesn't want to change
@Repeater
Thank you for replying
I never used the keyword "using" except for using namespace std; May you please explain it to me briefly, in simple term?
Thank you again