Search:

Type: Posts; User: mramazing

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,334

    I seem to remember an ACM competition problem...

    I seem to remember an ACM competition problem within the realm of your... statement. But, again, you have not asked a question.
  2. You can't do that because you already declared...

    You can't do that because you already declared the variable framesF
  3. Replies
    12
    Views
    14,365

    You could just use bit operators: ...

    You could just use bit operators:


    string binary_string = "1010";
    for(int i = 0; i < (int)real_binary_string.length(); i++){
    ch = binary_string[i];
    if(ch == '1'){
    dec_number =...
  4. Replies
    7
    Views
    2,277

    Thank you!

    Thank you!
  5. Replies
    7
    Views
    2,277

    Which is correct?

    In C++ are member functions supposed to be called 'member functions' or 'class methods'? Just curious.
  6. Replies
    4
    Views
    2,137

    alright, is getting a screenshot fast enough in...

    alright, is getting a screenshot fast enough in the code so that I can display the results in a different window viewing a 1 to 1 relationship? I suppose I can code some stuff up to decide that. I...
  7. Replies
    4
    Views
    2,137

    Flip the screen

    Hey guys,
    I need to flip the image being displayed to the user. I need to flip it in such a way that when looking at the screen it's as if you were looking at it in a mirror. I have been...
  8. Replies
    7
    Views
    1,274

    You can put in an exit(0).

    You can put in an exit(0).
  9. Replies
    5
    Views
    2,621

    I would try using a debugger. Start tracing...

    I would try using a debugger. Start tracing values etc. Salem had some good ideas...
  10. Thread: Stack

    by mramazing
    Replies
    10
    Views
    1,681

    In your stack node have a car object. ...

    In your stack node have a car object.



    struct node{
    MY_CAR_OBJECT car_data;
    node *next;
    };
  11. Replies
    33
    Views
    10,651

    your max length is 40 and if i counted right one...

    your max length is 40 and if i counted right one of your titles is longer than 40.
  12. Replies
    12
    Views
    2,259

    You can use something like Allegro or SDL, they...

    You can use something like Allegro or SDL, they both provide wrappers for directx and opengl. Allegro is what I started with but they both provide simple ways to get pictures on the screen as well as...
  13. Thread: C Puns

    by mramazing
    Replies
    26
    Views
    7,649

    @cpjust I don't understand where you are coming...

    @cpjust I don't understand where you are coming from I guess. I have had two jobs as a programmer using GCC as well as MSVC but I didnt work with anyone who wouldn't find this funny. As a matter of...
  14. Replies
    13
    Views
    1,579

    This would get a lot easier if you read one of...

    This would get a lot easier if you read one of the tutorials on this site. And, as MK said, there are countless resources online that work wonderful. For not knowing really much about what your doing...
  15. Replies
    6
    Views
    2,841

    You should look up the use of regular expressions...

    You should look up the use of regular expressions and the documentation on scanf.
  16. code formatting please

    code formatting please
  17. Thread: Help!!

    by mramazing
    Replies
    2
    Views
    1,119

    are you using a character array when calling the...

    are you using a character array when calling the function?
  18. Replies
    2
    Views
    1,171

    Or you can write the functions and assign them...

    Or you can write the functions and assign them some key that you call from the file. And 'switch' through them. But, like bernt, i would go with lua or python.
  19. You can use FMOD I'm pretty sure. just google it.

    You can use FMOD I'm pretty sure. just google it.
  20. Replies
    7
    Views
    2,747

    I dont think I really understand your question ...

    I dont think I really understand your question

    3 = (1,2) + (2,3) - (1,2) * (3,2) ?

    are you asking how to solve this problem in general or in c?
  21. Replies
    6
    Views
    1,983

    While I consider my self very sufficient in C and...

    While I consider my self very sufficient in C and C++ I learn new things every day. It took me about 2 years to really get the ball rolling in C. Although I was 14 when I started. I wouldn't worry...
  22. Thread: how to do

    by mramazing
    Replies
    2
    Views
    1,012

    hmmmm wow. I agree with Lazerlight... what have...

    hmmmm wow. I agree with Lazerlight... what have you tried? That is quite a bit to bring the forum without and effort shown.
  23. Thread: This Site...

    by mramazing
    Replies
    32
    Views
    3,866

    I see nothing wrong with it. The colors are fine...

    I see nothing wrong with it. The colors are fine and are not really the point of this forum. It's simple, easy to navigate, things are easy to read. Perfect.
  24. Replies
    16
    Views
    5,386

    My objective is not to compete with commercial...

    My objective is not to compete with commercial games. It is mostly just for fun. An experiment for the internet really. Programming is just a tool, as are the libraries. Those specifics aren't really...
  25. Replies
    6
    Views
    1,304

    Is the color depth the same as your desktop? That...

    Is the color depth the same as your desktop? That might have an effect on it, although it is just speculation.
Results 1 to 25 of 121
Page 1 of 5 1 2 3 4