Search:

Type: Posts; User: Azuth

Page 1 of 10 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,181

    strtok, used with a little care.

    strtok, used with a little care.
  2. Replies
    3
    Views
    1,164

    Is you strcmp "." perhaps picking up the . in the...

    Is you strcmp "." perhaps picking up the . in the filename and giving you issues?
  3. Replies
    9
    Views
    1,401

    Dude! This guy has 2 posts, he's used code tags,...

    Dude! This guy has 2 posts, he's used code tags, he's shown his code, he's made an effort and he's listened to the advice of others. Give him a bit of breathing space before you start picking on...
  4. Thread: quickie...

    by Azuth
    Replies
    8
    Views
    1,140

    Or better yet, write program that checks if WMP...

    Or better yet, write program that checks if WMP is running. If it is and the user hasn't entered a password into your program have WMP shutdown, pop up a message telling the user that the house will...
  5. Replies
    10
    Views
    1,633

    Are you running a command prompt and then your...

    Are you running a command prompt and then your program? Is the command prompt using command.com or cmd.exe?
  6. Thread: C++ Resources?

    by Azuth
    Replies
    8
    Views
    1,090

    http://www.cplusplus.com/

    http://www.cplusplus.com/
  7. Replies
    17
    Views
    7,017

    I think one of your problems may be defining your...

    I think one of your problems may be defining your string thus char *stropt = "false"; you are making a string literal, that is a string that the compiler never expects to be changed. But I have to...
  8. Replies
    88
    Views
    17,052

    Edit your post with code to add code tags please....

    Edit your post with code to add code tags please. Given the scope of your project it may pay to focus on a single command, try to make the code for it yourself, then post your code and explain what...
  9. Replies
    6
    Views
    1,377

    Go read the FAQ. Nobody will do your work for...

    Go read the FAQ. Nobody will do your work for you. You haven't told us what OS, or posted any code. Nobody could help you unless you put some more thought into your question.
  10. http://cboard.cprogramming.com/showthread.php?t=45...

    http://cboard.cprogramming.com/showthread.php?t=45223

    Scroll down until you see Quzah's post. I think it will shed some light on your problem.
  11. Thread: Good C book?

    by Azuth
    Replies
    19
    Views
    3,335

    It's still valid. "The C Programming Language -...

    It's still valid. "The C Programming Language - Kernighan & Ritchie". "C: The complete reference - Herbert Schildt"
  12. Replies
    4
    Views
    39,395

    printf("%s",temp);

    printf("%s",temp);
  13. Replies
    7
    Views
    1,270

    Why do I imagine you have the Doom process...

    Why do I imagine you have the Doom process management utility Quzah?
  14. Replies
    7
    Views
    3,708

    Oh, and seed rand outside your loop.

    Oh, and seed rand outside your loop.
  15. Replies
    7
    Views
    3,708

    Do you have to choose the 50 random numbers...

    Do you have to choose the 50 random numbers randomly?

    You could store 1000 numbers in an array and then pick numbers from the array by stepping through the array by a random amount; making the...
  16. Replies
    5
    Views
    1,232

    I see this comment so often, in reference to so...

    I see this comment so often, in reference to so many bad things. I know some teachers don't like to be shown up, but most will accept a different way of doing things quite happily (assuming it...
  17. Thread: argc

    by Azuth
    Replies
    16
    Views
    2,683

    Umm, wouldn't you want argv[1]? Isn't argv[0] the...

    Umm, wouldn't you want argv[1]? Isn't argv[0] the name that invoked the program?
  18. Like a lot of things, this is covered very well...

    Like a lot of things, this is covered very well in the FAQ. Look at the third example, it generates numbers between whatever you ask (in this case 10 and 12), what about if you told it to get numbers...
  19. Replies
    7
    Views
    1,352

    Yup, and you don't wanna know what it looks like...

    Yup, and you don't wanna know what it looks like when denom hits 25 ! O_o
  20. Replies
    7
    Views
    1,352

    I think your recursive function is filling up the...

    I think your recursive function is filling up the stack. It's not a question of < > 11, it's a question of hitting a number that causes your function to run so many times that if fills up the stack.
  21. Replies
    6
    Views
    1,745

    A few things to note: - This thread should...

    A few things to note:

    - This thread should probably be under the Network / Device communication section.

    - I assume from what you've said that you're only interested in a Windows answer, but...
  22. Thread: file find

    by Azuth
    Replies
    3
    Views
    1,278

    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?a...

    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1048384537&id=1043284392
    When all else fails, read the faq.
  23. Replies
    2
    Views
    1,142

    One idea would be to have two arrays, one for the...

    One idea would be to have two arrays, one for the numbers and one for the frequency of each number. As each number is entered you increment its frequency counter, when you're finished you simply look...
  24. Replies
    13
    Views
    2,594

    Honestly, some people are their own worst enemy! ...

    Honestly, some people are their own worst enemy!

    "Well, I've got a way to start for you. Go read the Announcements, and go edit your post, adding in the needed code tags."

    Make it easy for...
  25. Replies
    4
    Views
    3,512

    Your program could be doing things within a loop....

    Your program could be doing things within a loop. One of the elements of the loop is checking for a key press. What does your programme do? OS?
Results 1 to 25 of 236
Page 1 of 10 1 2 3 4