Search:

Type: Posts; User: Xoid

Search: Search took 0.00 seconds.

  1. Replies
    11
    Views
    1,309

    now now children :p let's not be rude, hehe I...

    now now children :p let's not be rude, hehe

    I like the guys idea, it'll funny to actually do that with code, your probably gonna need to get a phone network bible something with all the relevent...
  2. Replies
    1
    Views
    2,049

    Anyone know a good tutorial on windows sockets?

    Anyone know a good tutorial I can download explaining windows TCP/IP socket programming in C?

    Thanks for any help in advance ;)
  3. Thread: PC not working!

    by Xoid
    Replies
    12
    Views
    1,839

    nope, nothing is working, everything is in place,...

    nope, nothing is working, everything is in place, the cpu fan won't even spin now *sigh* nevermind, I suppose it's one of those things, but I've only had the PC for a couple of years :(

    I tried a...
  4. Thread: PC not working!

    by Xoid
    Replies
    12
    Views
    1,839

    Well... as I said before, I was playing a game...

    Well... as I said before, I was playing a game and the PC just switched off, to be honest I assumed it was the power supply mainly because when I switched it on nothing happened, but recently I...
  5. Thread: PC not working!

    by Xoid
    Replies
    12
    Views
    1,839

    hmm... well... I've disconnected the FDD and the...

    hmm... well... I've disconnected the FDD and the HDD and the CDD and nothing happens! argghh!!! tried to isolate by trying one peripheral at a time but nothing happens.

    does it matter what power...
  6. Thread: PC not working!

    by Xoid
    Replies
    12
    Views
    1,839

    erm... Thanks for the reply, I think :P ...

    erm... Thanks for the reply, I think :P

    well... "me" didn't do anything, I was playing a game and it just well... switched its self off, strange, but true!

    I thought maybe the switching power...
  7. Thread: PC not working!

    by Xoid
    Replies
    12
    Views
    1,839

    PC not working!

    Hi folks!

    well... me got a serious problem

    I just bought a new Switched power supply for my system because the old one screwed up, now I've plugged EVERYTHING in the way it should be, and it's...
  8. Thread: phonebook help

    by Xoid
    Replies
    5
    Views
    2,246

    use a binary search

    use a binary search
  9. Thread: 2 files under 1

    by Xoid
    Replies
    12
    Views
    1,368

    hey, this is basically the same as what...

    hey, this is basically the same as what blackrat364 suggested, but if you don't know ASM, then you could try this:

    append the program onto a little menu system prog then store where the first...
  10. Thread: Beep-Beep

    by Xoid
    Replies
    5
    Views
    1,867

    just to point out... You can't just compare...

    just to point out...

    You can't just compare the command line arguments with just the assignment operator

    you must use and should I think, use a function like 'strncmp'

    ex:
    /* check the...
  11. Replies
    23
    Views
    5,256

    Learning C or C++ ?

    Do you think it's worth learning C before C++ or just take the plunge and jump to the superset?
  12. Replies
    22
    Views
    3,442

    aah! many thanks!

    aah! many thanks!
  13. Replies
    22
    Views
    3,442

    cool, is that the most efficient method under...

    cool, is that the most efficient method under windows?
  14. Replies
    22
    Views
    3,442

    maybe I'm wrong, but if you want to find an exact...

    maybe I'm wrong, but if you want to find an exact filesize you need Unix, LOL, I'm using windows, Visual C++ 6 compiler currently learning ANSI C, anything I could use that will guarantee the correct...
  15. Replies
    12
    Views
    2,812

    also in your while loop check for EOF using feof...

    also in your while loop check for EOF using feof just as an extra
  16. Replies
    12
    Views
    2,812

    // ****************************************** ...

    // ******************************************

    do
    {

    if ( (inv = fopen("inventory.txt","rt")) == NULL )
    fprintf(stderr,"Could not open file inventory.txt\n");
    }
    while (inv == NULL);
  17. Replies
    12
    Views
    2,812

    Have you ever thought of using structures when...

    Have you ever thought of using structures when saving records to a file?
  18. Replies
    22
    Views
    3,442

    here you a go, I'm new to C so please show me a...

    here you a go, I'm new to C so please show me a better way of this is wrong, thanks.


    int filesize(FILE *handle)
    {
    fseek(handle,0,SEEK_END);
    fsize=ftell(handle);

    return fsize;
    }
  19. Replies
    5
    Views
    5,393

    I'm using Windows 98, with Visual C++ 6 compiler

    I'm using Windows 98, with Visual C++ 6 compiler
  20. Thread: Weird IE error

    by Xoid
    Replies
    16
    Views
    2,399

    Hi! alot of people have this problem with IE,...

    Hi! alot of people have this problem with IE, damn javascript bugs :( grrr....

    anyway, try this:

    re-register two DLL's using REGSVR32:

    SHDOCVW.DLL
    ACTXPRXY.DLL

    after registering the...
  21. Replies
    5
    Views
    5,393

    ANSI C Graphics programming

    Hi! I'm fairly new to C programming and to the forum, does anyone know what commands I could use in ANSI C for graphics, such as line, boxes, circles etc...

    thank you for any help in advance.
Results 1 to 21 of 21