Search:

Type: Posts; User: Nuke

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    1,864

    A while loop... like this? char keyInput...

    A while loop... like this?




    char keyInput = 0;
    keyInput = kbhit();

    while (keyInput != 'x')
    {
  2. Thread: Try my beta

    by Nuke
    Replies
    18
    Views
    3,217

    Works fine on my computer. You should add a...

    Works fine on my computer. You should add a background image so you don't feel like you're floating in space... but other than that pretty good. :)
  3. Thread: Text Editor

    by Nuke
    Replies
    3
    Views
    2,782

    yeah the regular edit.com that comes w/ dos...

    yeah the regular edit.com that comes w/ dos should work fine.. wow. I can't believe you've managed to use edlin to make C programs. I give you some major respect for doing that. :)
  4. Replies
    63
    Views
    5,698

    Awesome game! When I did the LB though, I found...

    Awesome game! When I did the LB though, I found it hard to see the enemy bullets and usually got shot up pretty bad while it was going on... Is there anyway to make their bullets more visable during...
  5. Replies
    10
    Views
    1,460

    So, what happens after the yPosition is off the...

    So, what happens after the yPosition is off the lower part of the screen? Will that crash it? or will it wrap up again to the top?
  6. Replies
    10
    Views
    4,299

    Yeah, I got some errors too when I was trying to...

    Yeah, I got some errors too when I was trying to compile, but then again I'm using Dev-C++...

    Anyway, the game is awesome. :) The only thing that got me is that all movement pauses while a ninja...
  7. Replies
    4
    Views
    1,165

    Wow, that is so much more complicated that...

    Wow, that is so much more complicated that Dev-C++.. With that after you select "Win32 console" in new project it already makes a blank source for you and opens it.. Then your ready to start.
  8. Replies
    19
    Views
    4,960

    I use the web for reference... :) , I would get a...

    I use the web for reference... :) , I would get a book.. but then there's that issue of "money". lol.
  9. Replies
    16
    Views
    2,836

    I use "getch()" as a pause, "system("pause")" I...

    I use "getch()" as a pause, "system("pause")" I heard isn't a good idea to do. (I heard system commands in general were a bad idea :) )
  10. Thread: c++ program

    by Nuke
    Replies
    22
    Views
    4,708

    I read all the posts, and I found them to help ME...

    I read all the posts, and I found them to help ME understand linked lists better and I didn't even ask the question! :) A lot of people did practically post what you had to do. I'm sorry you feel...
  11. Replies
    8
    Views
    2,633

    Also \n's would make it look better, so that it's...

    Also \n's would make it look better, so that it's not just attempted to be placed on one line....
  12. Thread: ending a program

    by Nuke
    Replies
    12
    Views
    1,346

    Isn't it also in stdlib.h? anyway, isn't it...

    Isn't it also in stdlib.h?

    anyway, isn't it easier just to return 0? :confused:
  13. Thread: typecasting

    by Nuke
    Replies
    14
    Views
    2,001

    I usually do: average =...

    I usually do:



    average = (double)sumOfValues / (double)amountOfValues;


    or something like that. It works fine, I never tryed doing it the other way...
  14. Replies
    12
    Views
    2,381

    Wow, really cool program! It reminded me a little...

    Wow, really cool program! It reminded me a little of a dream I had once... errr, maybe that's not a good thing. :)
  15. Replies
    5
    Views
    980

    That site is awesome! Thanks for the link! :D

    That site is awesome! Thanks for the link! :D
  16. Replies
    5
    Views
    1,039

    I read a book that referred to the addresses in...

    I read a book that referred to the addresses in hex form, yet from my 486 to my 1.8Ghz Pentium 4 I've yet to recieve a hex value when I print out the address. If it's not that big of a deal that it's...
  17. Replies
    10
    Views
    1,282

    I suggest making it a console application, I made...

    I suggest making it a console application, I made a simple text editor in that and that wasn't that hard. Then like everyone said, after a while move to Windows. (something I'm not up to in skill...
  18. Thread: tab size

    by Nuke
    Replies
    6
    Views
    1,917

    I like just using 2 spaces to indent. You don't...

    I like just using 2 spaces to indent. You don't need to use the tab key or deal with any problems with that in general and it's not a hassel to hit the space bar twice. :D
  19. Replies
    13
    Views
    3,224

    As for the 24 volume sets going for $1000+, I...

    As for the 24 volume sets going for $1000+, I think those are more geared towards libraries and buildings of the like... I personally don't know anyone that owns (or can afford) the paper version. :D
  20. Replies
    15
    Views
    5,083

    I program in C++ at home and stuff, but in school...

    I program in C++ at home and stuff, but in school the only class my High School offers is Java programming. The basic syntax is almost the same... if statments, switch statments, function calls,...
  21. Replies
    11
    Views
    3,746

    Poll: I never noticed you talking too much before.... I...

    I never noticed you talking too much before.... I wouldn't worry about it.
  22. Thread: New Ad

    by Nuke
    Replies
    9
    Views
    2,675

    You can always just click the close button when...

    You can always just click the close button when they pop up....
  23. Replies
    19
    Views
    6,373

    lol. That was good.. I don't want to ruin it for...

    lol. That was good.. I don't want to ruin it for anyone so I won't say anything about it. :)
  24. Replies
    3
    Views
    959

    You could also do the above w/o using a seperate...

    You could also do the above w/o using a seperate function:




    main()
    {
    char input; //declare
    input = getch(); //get character....
    switch (input) //switch statement block
  25. Replies
    2
    Views
    1,123

    Yeah, I'm using C++ to create this program...

    Yeah, I'm using C++ to create this program (dev-C++ to be exact). I've been learning and learned most of what I know from a C programming book. I've yet to delve into a lot of the things C++ has to...
Results 1 to 25 of 74
Page 1 of 3 1 2 3