A
aki
Hi ,
i want to declare array of pointers of type node .
am i wight in this..?? or will it do some problem //
thanks
Aki
..
struct node
{
int data;
node* ptr;
}
int NUM;
cin>>NUM;
node *ARR[NUM];
i want to declare array of pointers of type node .
am i wight in this..?? or will it do some problem //
thanks
Aki
..
struct node
{
int data;
node* ptr;
}
int NUM;
cin>>NUM;
node *ARR[NUM];