[ad_1]
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
[ad_2]
solved Generic C++ Linked list
[ad_1]
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
[ad_2]
solved Generic C++ Linked list