Search:

Type: Posts; User: sbattu

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    2,371

    Interesting, UCHAR is defined as typdef unsigned...

    Interesting, UCHAR is defined as typdef unsigned char UCHAR, so the if statements should be fine, you can give this a try.

    if ( temp[i] == (UCHAR)'A')
  2. Replies
    3
    Views
    1,651

    Hi, it might sound odd, but are you sure you are...

    Hi, it might sound odd, but are you sure you are getting that error from this program or there any other programs that are there wihtin in our environment, if you are running in IDE that could be the...
  3. Replies
    4
    Views
    1,480

    The word binary integer is kind of confusing,...

    The word binary integer is kind of confusing, because at the low level everything is binary, whether its integer or character or string or float.
    Coming to the solution you are looking for, you can...
  4. Replies
    14
    Views
    1,718

    Can you be more specific in explaining your...

    Can you be more specific in explaining your problem, the one you gave is kind of vague.
  5. Replies
    2
    Views
    14,563

    As far as I know, there is no such thing as...

    As far as I know, there is no such thing as design patterns in C.
    From my understanding design patterns are helpful to provide solutions to design problems.
    Most of the design issues fit into one...
  6. Replies
    4
    Views
    1,861

    Not sure what you mean by causing gap at end, but...

    Not sure what you mean by causing gap at end, but the printf() will not print the NULL explicity, it just prints upto NULL.



    Depending on what's there next to your string in memory, it might...
  7. Replies
    5
    Views
    5,400

    Try doing this, tree = NULL; immediately...

    Try doing this,

    tree = NULL;

    immediately after the free(tree); statment
Results 1 to 7 of 7