Search:

Type: Posts; User: Jeffrey

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,227

    if the function wanted to change the pointer and...

    if the function wanted to change the pointer and not the referenced data it would need to be passed a pointer to the pointer.
  2. Thread: MD5 Algorithm

    by Jeffrey
    Replies
    2
    Views
    16,586

    main.c: #include #include ...

    main.c:
    #include <stdio.h>
    #include <stdlib.h>
    #include "md5.h"

    void hexhash(char *str, char *hash);

    int main(int argc, char *argv[])
    {
    char hash[33];
  3. and a whole $$$$bunch of other problems created....

    and a whole $$$$bunch of other problems created.

    But let's not let this degenerate into an operating system argument.
  4. Replies
    4
    Views
    1,788

    Start off with XOR encryption. pseudo code: ...

    Start off with XOR encryption.

    pseudo code:


    string key = "monkey"
    string encryptme = "secretcode"
    string final
    int keylength = strlen(key)
    int keypos = 0
  5. Replies
    1
    Views
    1,170

    Passing an undetermined amount of variables.

    I'm looking to create a function for my parsing algorithm which acts in a manner similar to scanf and printf, in that it can take an undetermined amount of variables.

    printf("", a, b, c, d, e,...
Results 1 to 5 of 5