Search:

Type: Posts; User: AndiPersti

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,771

    Your problem starts here: BigInt...

    Your problem starts here:


    BigInt *convertArraytoLL(struct integer *p){
    BigInt *tmp, *dubTmp;
    int i;
    dubTmp = malloc(sizeof(BigInt));
    for (i = 0; i <= p->size; i++) {
    ...
  2. Replies
    6
    Views
    1,771

    //frees a linked list (still need to test) void...

    //frees a linked list (still need to test)
    void freeLinkedList(BigInt *p){
    if(p->next) //error is occurring in this line
    freeLinkedList(p->next);
    ...
Results 1 to 2 of 2