Search:

Type: Posts; User: coolman0stress

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,235

    Pretty much, just checking wether there is...

    Pretty much, just checking wether there is anything at array[i]. With "anything" meaning a value other than 0 (or if there is no element at that index)(which would be false), all other values are...
  2. Replies
    6
    Views
    1,235

    it's the same as: if(array[i]) ...

    it's the same as:


    if(array[i])
    result+=array[i];
    else
    result+=90;


    Instead of doing all that C has the tertiary construct (three involved elements), (evaluate)?(if true):...
  3. Replies
    6
    Views
    1,381

    Yes you can write it in C++. Look into CGI...

    Yes you can write it in C++. Look into CGI programming using C/C++. Though you could probably develop it faster using perl or php.

    If i understand correctly you want to scan pages for certain...
  4. Great, thanks for the replies so far. As far...

    Great, thanks for the replies so far.

    As far as compiler goes, so far i've only tried using borland (bcc32). I not entirely sure how to display assembly, but i'll look into that matter.

    I'll...
  5. Replies
    9
    Views
    40,801

    If it's '\t' that you are talking about then it's...

    If it's '\t' that you are talking about then it's a tab.
  6. Casting function pointers into char arrays and back

    Hi all, first time poster here.

    I am not sure how "usefull" my question will end up being, but i've been wondering about the following:

    You can cast between datatypes, so i was wondering if it...
Results 1 to 6 of 6