Search:

Type: Posts; User: p1kn1c

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,306

    you mean TCC? cause thats only one i can find...

    you mean TCC? cause thats only one i can find there.
  2. Replies
    3
    Views
    1,306

    Mixed Mode (Assembly-C) compilers

    Hi im programming in mixed mode (C calling assembly code, and vice versa) for an assignment.

    At school to compiler this we use BCC , so its is just bcc program1.c program2.asm

    Problem is at...
  3. Replies
    2
    Views
    8,320

    Thx got it to work doing what you said altho you...

    Thx got it to work doing what you said altho you forgot to mention i need to also times it by 10 sometimes.

    For instance
    2222 *111 = 2222*1+2222*1*10+2222*1*10*10. I got it to work putting this...
  4. Replies
    2
    Views
    8,320

    Algorithm for multiplying linked lists?

    Hi im trying to create a function to multiply two linked lists filled with integers.

    I have a function that correctly adds two already.
    I have a function that multyplies one list by 10(ie adds a...
  5. Help with linked list (and reading user input)

    Hi i have two basic functions


    llnode* createList(){

    char tmp;
    llnode *head = NULL;
    if ((head =(llnode *) malloc(sizeof(llnode))) == NULL) {
    (void)exit();
    }
Results 1 to 5 of 5