Search:

Type: Posts; User: creeping_death

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,458

    bumping threads

    Bumping was not my intention. I prefer to call it replying.

    I was simply trying to clarify my problem, as it seemed as it might of been confusing people.
  2. Thanks for the fast reply. Not sure what...

    Thanks for the fast reply.
    Not sure what chrismiceli is getting at though.

    saravanan_ts: im assuming the memory is automatically resized when:



    p="newname"; //possible
    *p='q'; ...
  3. difference between: const char *, char *

    Can anyone tell me the difference (if any) of the following (memory wise) of using const * vs char *:



    #include <conio.h>
    #include <stdio.h>

    #define GET_NUM_ELEMENTS(x) (sizeof(x) /...
  4. Replies
    2
    Views
    8,888

    thanks, that has it alot clearer

    thanks, that has it alot clearer
  5. Replies
    2
    Views
    8,888

    allocating memory for char* array

    A few questions.

    I know how to allocate memory for say 5 words that contain 10 characters each.
    say:

    char* wrdArray[5];

    for (int count = 0; count < 5; count ++)
    {
    wrdArray[count] =...
Results 1 to 5 of 5