Search:

Type: Posts; User: OOPboredom

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    5,811

    Bah - Quzah, I actually did say that but an error...

    Bah - Quzah, I actually did say that but an error within the messageboard code must've deleted what I typed :rolleyes:
  2. Replies
    4
    Views
    1,471

    Use a FILE type. #include ...

    Use a FILE type.





    #include <stdio.h>

    int main (int argc, char *argv[])
    {
  3. Replies
    5
    Views
    5,811

    total =...

    total = double(students[n].mark3)+double(students[n].mark2)+double(students[n].mark1);

    Unless double is a function, then this code is entirely wrong. If you're trying to type-cast the members of...
  4. Replies
    5
    Views
    1,557

    #include #include int...

    #include <stdio.h>
    #include <stdlib.h>

    int main(int argc, char *argv[])
    {
    char *pNumerals;
    int i;

    /* check for correct number of command-line arguments */
    if (argc != 2)
  5. Replies
    9
    Views
    1,257

    You could have Bob ( ... ) return an int. As in:...

    You could have Bob ( ... ) return an int. As in:



    int bob ( your parameters )
    {
    int rVal = -1;

    do
    {
  6. Replies
    10
    Views
    1,937

    I bet you didn't even look... Project ->...

    I bet you didn't even look...

    Project -> Project Settings ->Debug Tab ->General Category->Program Arguments

    Self explanatory from here.
  7. Replies
    10
    Views
    1,937

    Breakpoints will only be "followed" if you run...

    Breakpoints will only be "followed" if you run the executable within the IDE.

    Command line arguements can be added under Project ->Project Settings.
  8. Replies
    5
    Views
    1,450

    Google (windows socket programming tutorials)...

    Google (windows socket programming tutorials)

    Try this.
  9. Thread: mail

    by OOPboredom
    Replies
    3
    Views
    1,278

    Sigh.

    Sigh.
  10. Replies
    6
    Views
    9,988

    I'm waiting for... hello hulls, do i use a...

    I'm waiting for...


    hello hulls, do i use a tranzlator
  11. GetDiskFreeSpaceEx not working on windows XP

    I've been trying to calculate the amount of diskspace on a dvd drive compared to the amount of diskspace available on a drive other than the DVD drive (local hard disk).

    This function works on...
  12. Replies
    16
    Views
    2,512

    He wants you to post the progress you have made...

    He wants you to post the progress you have made so far. What is the current version of the code you are working on?
  13. Replies
    5
    Views
    10,791

    Alternative forms of printf.

    I'm trying to compile a list of alternative forms of printf. What other functions have the same capability as printf?
  14. Replies
    7
    Views
    2,641

    I'm quite a busy man, but I took 10 seconds out...

    I'm quite a busy man, but I took 10 seconds out of my life to find an article on network compression techniques (google - it's fun!):

    IP Packet Compression Techniques

    If you want, I can go...
  15. Replies
    4
    Views
    1,022

    Stop reading and start applying what you've...

    Stop reading and start applying what you've learned by writing code (aka nifty "pgrms").

    You can only read so much.
  16. Replies
    7
    Views
    1,550

    Enjoy, I'm sorry, but that doesn't even make...

    Enjoy,

    I'm sorry, but that doesn't even make sense. Quit.
  17. fifty = money / 50; result %= 50; twenty =...

    fifty = money / 50;
    result %= 50;
    twenty = money / 20;
    result %= 20;
    ten = money / 10;
    result %= 10;
    five = money / 5;
    result %= 5;
  18. Replies
    1
    Views
    856

    This will help you...

    This will help you

    Take a look at the above link; it should give you a good start.
  19. Replies
    4
    Views
    1,841

    If you wrote your posts in French, I would still...

    If you wrote your posts in French, I would still not be able to understand what you are always trying to get at. But, for some reason I understand.

    You want to write letters to the screen (A, B,...
  20. Replies
    5
    Views
    1,534

    Enjoy, did you even compile this code? The...

    Enjoy, did you even compile this code? The errors you gave us do not even resemble the source code you posted.


    You need to look into process.h. _spawnl is defined as spawnl for me and _P_WAIT...
  21. Replies
    2
    Views
    1,284

    Multi-platform support issues.

    I've been recently writing an application that will support many different platforms. Basically, this utility will support different flavors of *nix to win32 platforms.

    I was wondering if anybody...
  22. Replies
    8
    Views
    1,161

    Quzah - thank you being the first person to...

    Quzah - thank you being the first person to publicly express what I've been wanting to say about enjoy's tenure here.
  23. Replies
    2
    Views
    1,201

    Here is this site's search feature...

    Here is this site's search feature

    This is a very useful feature.
  24. Replies
    6
    Views
    1,431

    int main (void) { int annualrate = 1; int...

    int main (void) {
    int annualrate = 1;
    int annualyield = 0;
    int currentrate = -5;

    if (annualrate) {
    printf("true\n");
    } else {
    printf("false\n");
    }
  25. Replies
    2
    Views
    1,078

    I hope Quzah doesn't mind, but I'll give you a...

    I hope Quzah doesn't mind, but I'll give you a general hint. If you've learned how to write flow charts, then write out the flow chart for an if-statement and one for a switch-statement.

    Compare...
Results 1 to 25 of 50
Page 1 of 2 1 2