Search:

Type: Posts; User: henry_kay

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    2,324

    I think your answer solved the problem for me: ...

    I think your answer solved the problem for me:

    When i was doing this:



    char pattern_small[m];

    for( i = 0; i < m; i++)
    pattern_small[i] = pattern[0][i];
  2. Replies
    7
    Views
    2,324

    As i wrote in the beginning, this is a linked...

    As i wrote in the beginning, this is a linked list:


    ktemp->word = test; <- assign the string to the unsigned char *
    ktemp->next = khead;khead = ktemp; <- point ktemp to the next element in the...
  3. Replies
    7
    Views
    2,324

    Thanks for the very fast answer! Essentially...

    Thanks for the very fast answer!

    Essentially the problem is how to copy the string stored in the array small_pattern[] into the unsigned char *word. A *word pointer is created for each string i...
  4. Replies
    2
    Views
    4,767

    bitwise operations with double

    Hi, i want to use bitwise operations in my code to perform fast multiplications. As far as i know, bitwise multiplications can be done only with integers but i am using bigger data, so is it possible...
  5. Replies
    7
    Views
    2,324

    Passing an array to a linked list

    Hi, i am trying to use a linked list in my code but i am having some difficulties. The link is defined like that:


    struct kword {
    unsigned char *word;
    struct kword *next;
    };

    I am trying...
Results 1 to 5 of 5