for(int i=3;i>=0;i++){
Insert(&head,&a[i],int_size);
}
There is a memory error in your for loops, use “i–” instead of “i++”
1
solved Generic C++ Linked list
for(int i=3;i>=0;i++){
Insert(&head,&a[i],int_size);
}
There is a memory error in your for loops, use “i–” instead of “i++”
1
solved Generic C++ Linked list