Search:

Type: Posts; User: c coder

Search: Search took 0.00 seconds.

  1. Replies
    0
    Views
    3,455

    Reading memory from process (PID)

    Hi,
    been working all night on this without getting it to work. Need some help if anyone knows what might be wrong.

    It's quite big main source so I dont want to paste it all right now.
    After use...
  2. Replies
    1
    Views
    2,637

    pointer specific [solved]

    how to wrap pointers?

    do i need to align pointer in memory (by padding or something)?

    i have array table of chars.
    example char array[65536).

    making:
    char *ptr = array;
  3. Replies
    6
    Views
    5,551

    manasij: Maybe it didnt make sense because my...

    manasij: Maybe it didnt make sense because my explanation was very subjective. and the core problem is more complex than that. Doing so by pasting alot of code wouldnt help much either. I was trying...
  4. Replies
    6
    Views
    5,551

    Ive decided to do this because of easiness of...

    Ive decided to do this because of easiness of maintaining and updating code. Since i vant arbitrary datatypes and even own datatypes as in structures. Later when I want a new datatype-structure...
  5. Replies
    5
    Views
    1,625

    you haven't said anything about your loop. ...

    you haven't said anything about your loop.

    clear foo with xor:


    std::cout<< (foo^foo) << " " << (0xFFFFFFFF ^ 0xFFFFFFFF) <<std::endl;
  6. Replies
    6
    Views
    5,551

    an array of templates?

    I hope someone with broad knowledge about templates and arrays can direct me on this.

    i know how to make a simple template class and use it for different datatypes. i have little knowledge about...
  7. Replies
    5
    Views
    1,129

    Well, why couldnt you just use c=fgetc(fp);...

    Well, why couldnt you just use c=fgetc(fp); (where c is a char). A char is commonly 8-bits in total depending on the compiler i guess. Now, when you have that character (or all of them) you can...
  8. Replies
    4
    Views
    906

    Hi, There are of course many ways to do this....

    Hi,

    There are of course many ways to do this. One of the way's is to know exactly what the tags are named: with storing them in a character array. another approach would be to make a more...
  9. Replies
    14
    Views
    12,831

    it looks like this has just gone far away off...

    it looks like this has just gone far away off topic. let me just clear some things up.
    for me to use #define's for this would be out of the question. you see i use a struct with two variables. as an...
  10. Replies
    14
    Views
    12,831

    so they're useful in other words ;)

    so they're useful in other words ;)
  11. Replies
    14
    Views
    12,831

    Thanks!

    Thanks!
  12. Replies
    14
    Views
    12,831

    global struct initialization

    Hi,

    I should allready know this, but sometimes i confuse myself by not knowing what the compiler does.

    So, is this safe?


    struct JustAStruct
    {
    char *name;
Results 1 to 12 of 13