Search:

Type: Posts; User: Stack Overflow

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    4,225

    Thank you very much for all of your help and...

    Thank you very much for all of your help and suggestions, Codeplug.

    I haven't had much time to code this week nor have I thoroughly read your post, but it looks very insightful and I will begin...
  2. Replies
    8
    Views
    4,225

    Excellent suggestion, Codeplug. I've made a...

    Excellent suggestion, Codeplug.

    I've made a lot of progress since your post and have decided to implement non-blocking sockets into my program. I have one question though:

    How do you send out...
  3. Replies
    8
    Views
    4,225

    Thanks. It's good to be back! 8) That...

    Thanks. It's good to be back! 8)



    That suggestion may be of some help down the line, however I'd like to show you an example of what I'm trying to do in code format:


    void queryServers(int...
  4. Replies
    8
    Views
    4,225

    Query multiple servers quickly

    Hello,

    I am trying to determine the best possible solution to accomplish a simple, yet complex task.

    I've been working on a new project for quite some time and have written a custom framework...
  5. Replies
    21
    Views
    7,016

    Congratulations! :cool:

    Congratulations! :cool:
  6. Replies
    3
    Views
    4,317

    @prog-bman: Real busy to say the least. I...

    @prog-bman: Real busy to say the least. I remembered this site just about a week ago and said "Hey, let me go there and post again". Heh. Hope to see you all around!
  7. Replies
    3
    Views
    4,317

    Linux CentOS Woes!

    Hello,

    I thought I'd share a funny story with you all that happens to be true. There are two people conversing back and forth via eMails.


    Jerry A. Taylor -- City Manager of Tuttle, Oklahoma...
  8. Replies
    11
    Views
    3,170

    Hello, I've grown to like the MinGW Developer...

    Hello,

    I've grown to like the MinGW Developer Studio suite. It resembles VC 6 in alot of ways. This package is a Cross-Platform C/C++ IDE for GNU GCC Compiler systems.


    Linux Screenshots

    I...
  9. Replies
    7
    Views
    3,425

    Hello, 2) You can have a look at my signature...

    Hello,

    2) You can have a look at my signature or view this short document I wrote about it: Locating a Segmentation Fault

    And/or, view this detailed CBoard article: Debugging Segmentation...
  10. Replies
    7
    Views
    3,280

    Hello, This is a good thread. Through my...

    Hello,

    This is a good thread. Through my research of the standard function fflush(), I've realized that it is taken out of context by alot of programmers. For instance, this MSDN article explains...
  11. Replies
    20
    Views
    248,754

    Hello, Well, I just checked my eMail this...

    Hello,

    Well, I just checked my eMail this morning, and I did receive it. Heh, it's getting close to the deadline; it's time I grade all of the submissions. I'm about to look over the eMail.
    ...
  12. Replies
    20
    Views
    248,754

    Hello, Submission received. Thanks for...

    Hello,

    Submission received. Thanks for participating. :cool:


    - Stack Overflow
  13. Replies
    3
    Views
    3,194

    Alright, I do see what you mean. And I just...

    Alright,

    I do see what you mean. And I just realized that what I was trying to do was a bit pointless.

    Here I wanted data[0] to point to ptr, data[1] to pch, and so forth. Thus I could allocate...
  14. Replies
    3
    Views
    3,194

    Array of pointer to characters

    Hello,

    As a first note, I have done a lot of board searching on topics such as: "array of functions" and so forth, but can't find a definite solution.

    My question is this: is it possible to...
  15. Replies
    7
    Views
    3,855

    Hmm, Well if we back up the story some, who in...

    Hmm,

    Well if we back up the story some, who in their right mind would throw a computer out?
    It's no better than throwing out a credit card statement, and hoping that no one will come across it....
  16. Replies
    2
    Views
    1,082

    Hello, This thread may help: pointers...

    Hello,

    This thread may help: pointers


    - Stack Overflow
  17. Replies
    19
    Views
    3,241

    Hello, A few issues. If you want to use a...

    Hello,

    A few issues. If you want to use a do-while loop, you can use it without the infinite for loop. Also:
    while (temp=!-300)Seems wrong, did you mean to do:
    while (temp!=-300);Here's a small...
  18. Replies
    1
    Views
    7,170

    ANSI C Reference

    Hello,

    I have a simple question, and I can't seem to find an answer to it via Google. I have viewed the comp.lang.c FAQ, and I occasionally find a statement that looks like the following:...
  19. Replies
    6
    Views
    8,105

    Happy Birthday Dave!

    Hello,

    Just wanted to wish Dave Sinkula a happy 35th birthday!

    P.S. This could have been served by PM, but I wanted everyone else to get a chance to celebrate too.


    - Stack Overflow
  20. Replies
    3
    Views
    1,576

    Hello, Maybe the following links can help: ...

    Hello,

    Maybe the following links can help:


    VIA Arena Drivers Section (Note: Select Linux distro. On the right, select Audio and scroll down until you find VT8233)
    VIA VT8233 sound with Red...
  21. Replies
    14
    Views
    27,704

    Close, Current: while((c=getchar())!='\n &&...

    Close,

    Current:

    while((c=getchar())!='\n && ch!=EO);
    Correct:

    while((c=getchar())!='\n' && c!=EOF);
    - Stack Overflow
  22. Replies
    9
    Views
    2,572

    Hello, All variables must be declared before...

    Hello,

    All variables must be declared before use, although certain declarations can be made implicitly by context. A declaration specifies a type, and contains a list of one or more variables of...
  23. Hello, The switch statement is a multi-way...

    Hello,

    The switch statement is a multi-way decision that tests whether an expression matches one of a number of constant integer values, and branches accordingly.
    switch (expression) {
    case...
  24. Replies
    20
    Views
    248,754

    Hello, The standard operators are +, -, *, /,...

    Hello,

    The standard operators are +, -, *, /, !, and ^; where ^ represents the exponential operator, and ! represents factorial.

    The link I provided earlier has a figure that shows Operator...
  25. Replies
    20
    Views
    248,754

    Well, Expression evaluators I've seen do this...

    Well,

    Expression evaluators I've seen do this for evaluation. To our surprise Infix notations are not as simple as they seem, especially while evaluating them. To evaluate an infix expression we...
Results 1 to 25 of 484
Page 1 of 20 1 2 3 4