Search:

Type: Posts; User: Frost Drake

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,966

    The license will probably forbid you to use it...

    The license will probably forbid you to use it commercially, this includes using the compiler to compile code that is or will be used in a commercial environment.

    I have the professional version...
  2. Replies
    53
    Views
    5,408

    It's not the language that is hard, it's the...

    It's not the language that is hard, it's the application of it.
  3. Replies
    12
    Views
    1,892

    He probably meant that if your compiling on the...

    He probably meant that if your compiling on the Windows platform, you should use Microsoft's own compiler.

    Although Microsoft's own software have been known to break a larger Microsoft software...
  4. Replies
    6
    Views
    1,541

    Look into the common controls section on MSDN,...

    Look into the common controls section on MSDN, you should find what your looking for there. The MP3 format should be on wotsit.org.
  5. Your original code was fine... my two suggestions...

    Your original code was fine... my two suggestions would of fixed it. Remember, keep it simple, don't introduce anything that you don't need.

    i is just like sum before, its a garbage value.
  6. Well... you see... sum wasn't initialised, so...

    Well... you see...

    sum wasn't initialised, so the value in that variable is whatever that was written to the memory address prior to your program, usually 0 since RAM loses value at power off but...
  7. Go away you experts, let me do this. :p ...

    Go away you experts, let me do this. :p



    while (k <= 20 ){

    sum = 0;

    k = k + 1;
  8. Replies
    14
    Views
    1,452

    Maybe there is no type that have limit up to 1...

    Maybe there is no type that have limit up to 1 billion digits?
  9. Replies
    12
    Views
    2,586

    If I place them inside the Q struct, the compiler...

    If I place them inside the Q struct, the compiler jumps at me and gives me: syntax error before "static".

    If I had more than one queue, the createQ function will forward a seek pointer to the end...
  10. Replies
    12
    Views
    2,586

    Okay, point taken. I've wrote much better...

    Okay, point taken. I've wrote much better comments this time round. I'll post the refreshed piece of code after I try some more methods.

    About the head and tail thing however... I think I'll...
  11. Replies
    12
    Views
    2,586

    Problem: It seems to call one of the error...

    Problem: It seems to call one of the error handling functions as it enQs, that's why it shuts off the program as soon as it executes, printf didn't do anything. No message.

    It does compile...
  12. Replies
    44
    Views
    7,519

    Why do they need to restrict score on source code...

    Why do they need to restrict score on source code size?
  13. Replies
    12
    Views
    2,586

    It doesn't work, simple. The debugger won't...

    It doesn't work, simple.

    The debugger won't work on this system so I have no way of knowing what happened.

    If possible could you check if my logic is correct, I am a newbie programmer but...
  14. Replies
    12
    Views
    2,586

    Heap management

    Hello, I am frustrated over heap management, basically the task is to manage a variable number of FIFO queues with limited memory. There are only 4 functions to manage the queues and 2 error...
  15. Replies
    3
    Views
    1,654

    I've heard this before, someone else had said...

    I've heard this before, someone else had said that it is cheaper for a 32 bit processor to access an 32 bit int value rather than a byte which requires moving into ax and then isolate the low word...
  16. Replies
    4
    Views
    4,782

    Ok, thanks for the explaination. I've figured it...

    Ok, thanks for the explaination. I've figured it out through the provided example. Pass argument by reference!

    So if I had passed a SDL_Surface** src, in the code I should assign *src =...
  17. Replies
    4
    Views
    4,782

    Ah, fixed, thanks. BTW, why couldn't it make...

    Ah, fixed, thanks.

    BTW, why couldn't it make it point to something else? SDL_SetVideoMode returns a pointer, why can't I assign that to my pointer?
  18. Replies
    4
    Views
    4,782

    SDL_FillRect problem

    I think there is something wrong but I can't figure out what.

    I have an function that calls SDL_FillRect to fill the main screen with one colour but if I do that, the program just crashes and the...
  19. Replies
    7
    Views
    1,193

    Is it possible to do through asm? Like, how are...

    Is it possible to do through asm? Like, how are the socket libraries implemented in the first place?
  20. Replies
    24
    Views
    2,777

    I would if I knew where to find it, do it through...

    I would if I knew where to find it, do it through MS-DOS? What about on Mac OS and Linux?

    We newbies are still learning, so it's better to put off writing makefiles and allsorts and run everything...
  21. Replies
    2
    Views
    1,399

    That was embarrassing... :eek: Thanks,...

    That was embarrassing... :eek:

    Thanks, thanks, I had rewritten a list(this one) that I had a year ago and I was wondering why it didn't work this time. Haha! I thought that making m_tail point...
  22. Replies
    2
    Views
    1,399

    Linked List Run Time Error

    My console window just come up and said an error has occured and must close, can you figure what's wrong with my code? I've searched the forums and read some of the other people's linked list...
  23. Thread: OpenGL

    by Frost Drake
    Replies
    18
    Views
    2,906

    Nehe's tutorial is quite easy to follow, but that...

    Nehe's tutorial is quite easy to follow, but that glaux replacement is unavaliable, the link to the replacement zip comes up as error. So I was unable to move on.
  24. Replies
    19
    Views
    2,032

    Hello, newbie here, hope I can help. Have you...

    Hello, newbie here, hope I can help.

    Have you tried the last code you've posted with this before the end brace of main?


    return 0;

    I think this is what's wrong because you code doesn't...
  25. Replies
    19
    Views
    5,924

    I have an exact function as fiska for calculating...

    I have an exact function as fiska for calculating primes, except I used a double variable to contain the root instead of multiple calls, I wrote it when I was learning C++. It works. Rounding does...
Results 1 to 25 of 51
Page 1 of 3 1 2 3