Search:

Type: Posts; User: JOZZY& Wakko

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    37
    Views
    4,261

    Mensa is bull......... I did their test and...

    Mensa is bull......... I did their test and turned out to be in the top 3% of the Mensa if I would join and I got almost no education at all.
  2. Replies
    10
    Views
    4,979

    It is not my topic but I am trying to understand...

    It is not my topic but I am trying to understand this here as well. You mean that setting a start point for srand() results in the same output every time because the random number is generated at the...
  3. Replies
    4
    Views
    1,504

    It means that when you delete the shortcut it...

    It means that when you delete the shortcut it will delete it for all users that use the computer. If you are the only one that makes use of it I doubt that it would lead to any problems. However if...
  4. Replies
    10
    Views
    4,979

    Just for my understanding do you mean that when...

    Just for my understanding do you mean that when putting the following code into the loop it sets the beginning value of rand() to the specified number each time again and this could result in the...
  5. Replies
    1
    Views
    1,628

    Value to binary number.

    When calculating the value of a binary number for example 10010111 I need to do the following.


    But what if I am given the number 456 and I need to convert this value into a binary number. How...
  6. Replies
    10
    Views
    4,979

    I have no experience in this but after looking...

    I have no experience in this but after looking around a bit I think you could use the sleep() function to achieve this by making the system wait for a certain time so the code does not execute that...
  7. Maybe read the homework policy here C Board -...

    Maybe read the homework policy here C Board - Announcements in Forum : General Programming Boards.

    I doubt that your teacher wants you to convert existing code into C. Maybe they will help you...
  8. Replies
    4
    Views
    1,461

    Maybe one of these links can help you. Seems more...

    Maybe one of these links can help you. Seems more people asked that exact same question on several forums including the Mandriva forum.

    Google
  9. Replies
    14
    Views
    11,339

    Far as I understand it "Run-Time" is the period...

    Far as I understand it "Run-Time" is the period in which the program is executed.

    Run time (computing) - Wikipedia, the free encyclopedia

    If you ask me to measure the different "Run-Times" I...
  10. Thread: Tools

    by JOZZY& Wakko
    Replies
    11
    Views
    2,428

    Wouldn't both fit in for Windows if you run...

    Wouldn't both fit in for Windows if you run DEV-C++ it also supports C?

    Btw. on Linux I am using Kwrite and GCC now to write and compile scripts. Are these very limited or are they good enough for...
  11. Replies
    21
    Views
    2,740

    #include #include int...

    #include <stdio.h>
    #include <string.h>

    int main(int argc, char *argv[]) {
    int value = 5;
    char buffer_one[8], buffer_two[8];

    strcpy(buffer_one, "one"); /* Put "one" into...
  12. Replies
    0
    Views
    2,022

    Assembly language.

    First of all thanks to MK27 for pointing me out to the book Hacking: The Art of Exploitation - Wikipedia, the free encyclopedia

    Reading it I came upon the chapter 0x250 that deals a lot with...
  13. Replies
    6
    Views
    2,266

    A takes on the value 40 in line 4. B takes on...

    A takes on the value 40 in line 4.
    B takes on the value 50 in line 4.
    The value of variable B is stored in C at line 4.

    Read this Comma operator - Wikipedia, the free encyclopedia

    i = (a, b,...
  14. Replies
    4
    Views
    1,831

    I'm an idiot. Now I see it. Thanks for the...

    I'm an idiot. Now I see it.

    Thanks for the help the both of you.
  15. Replies
    4
    Views
    1,831

    Am I right when I say the result is 25 or what...

    Am I right when I say the result is 25 or what exactly is wrong. Ow, yeah, maybe handy to say but it is pseudo code if I am right.
  16. Replies
    4
    Views
    1,831

    Explanation of functions needed.

    The following is stated in the book I am reading at the moment.

    int factorial(int x)
    {
    int i;
    for(i=1; i < x; i++)
    x *= i;
    return x;
    }
  17. Replies
    0
    Views
    1,158

    Rent A Coder.

    I have no idea if anyone on here uses this but I hope one of you people does.

    Is there any option to see what other people have bid on a certain auction before making a bid yourself?

    Looking at...
  18. Replies
    6
    Views
    13,161

    Hahaha. I am not used to the word "billing" so it...

    Hahaha. I am not used to the word "billing" so it kind of confused me.

    Thanks both for the help.
  19. Replies
    6
    Views
    13,161

    Billing street address.

    When filling in a form written in American and they ask for your "Billing street address" do they refer to your home address or is this the address of your bank?
  20. Replies
    29
    Views
    2,599

    Hahaha, nice to know there are people on there...

    Hahaha, nice to know there are people on there that offer serious support at least. That is something I miss on a lot of other forums (and the reason this is the only forum I currently use).

    I do...
  21. Replies
    29
    Views
    2,599

    I think I will try GTK+ to me it seems the most...

    I think I will try GTK+ to me it seems the most clear when I look at the examples and easy to learn. I just want to make sure I am not making the wrong choice.
  22. Replies
    29
    Views
    2,599

    I would enjoy a good challenge but I just wonder...

    I would enjoy a good challenge but I just wonder if it would not be more smart to learn GTK+ for the fact that it can be used on more then one platform. If I ever decide to make a step over to an...
  23. Replies
    29
    Views
    2,599

    If I search for WinAPI on wikipedia I get a...

    If I search for WinAPI on wikipedia I get a ........load of text that at this moment just reads the same to me a Arabic (and I do not understand Arabic at all, I actually think it is weird to hear)....
  24. Replies
    29
    Views
    2,599

    So if I get it right on this one using C++ would...

    So if I get it right on this one using C++ would allow me to design and code a GUI faster then I would be able to do it in GTK+?

    Next to that what is mostly used by company's these these to code...
  25. Replies
    29
    Views
    2,599

    The GTK+ website mentioned that applications...

    The GTK+ website mentioned that applications could easily be converted from the Windows to the Unix platform using GTK+?

    Next to that my basic need now is to learn it for the Windows platform. But...
Results 1 to 25 of 59
Page 1 of 3 1 2 3