Search:

Type: Posts; User: Cooloorful

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,156

    while(current != NULL){ if(current->coef...

    while(current != NULL){
    if(current->coef != 0)
    printf("%dx%d+",current->coef,current->pow);
    current = current->next;
    }


    Ok, the blue sections are your code and won't...
  2. Replies
    7
    Views
    1,156

    Why not just write out your values like this? ...

    Why not just write out your values like this?



    while(current != NULL){
    if(current->coef != 0)
    printf("%dx%d+",current->coef,current->pow);
    current = current->next;
    ...
Results 1 to 2 of 2