Search:

Type: Posts; User: cope

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    3,460

    I've been looking for code like this to pull...

    I've been looking for code like this to pull apart for a bit, but when I try to compile the server It throws an error.


    ...
  2. Replies
    7
    Views
    21,948

    I haven't done any multithreading.... Time to hit...

    I haven't done any multithreading.... Time to hit the books I think.
    Maybe I'm in over my head for a "beginner project"
  3. Replies
    7
    Views
    21,948

    multiple connections via sockets

    Hi guys,

    I'm new to c++ and indeed socket programming but as I've said in a few other threads I've joined in on, I've been programming for a while.

    I'm a little stuck on how I can achieve...
  4. Thread: pam & c++

    by cope
    Replies
    2
    Views
    2,464

    thank you.

    thank you.
  5. Thread: pam & c++

    by cope
    Replies
    2
    Views
    2,464

    pam & c++

    hi guys,

    I was wondering if there was a simple way of accessing PAM libraries from c++. I was originally going to store my own username/password database, but decided it would be reinventing the...
  6. Replies
    4
    Views
    986

    think of for loops like a while loop, the...

    think of for loops like a while loop, the condition needs to be true..

    so while c < len do..

    you had while c = len do.



    for (int c = 0; c < len; c++) {
    // dostuff
  7. Replies
    7
    Views
    4,461

    hi, I'm very new to c++ but always though int...

    hi, I'm very new to c++ but always though int main() was so return(0) would return a 0 to the calling application..

    Can't I return(1); to drop an error message from my application?
Results 1 to 7 of 7