Search:

Type: Posts; User: Syme

Search: Search took 0.00 seconds.

  1. Thread: XOR Help ?

    by Syme
    Replies
    3
    Views
    1,088

    XOR Help ?

    Could someone give me a rough outline of whats going on with XOR, i understand truth tables, from what i can make out that has something to do with it, is it just a case of substituting bytes...
  2. Replies
    5
    Views
    925

    quack

    quack
  3. Replies
    5
    Views
    925

    i never installed MSDN due to space constraints,...

    i never installed MSDN due to space constraints, which was probably a bit reckless of me, then again knowing MS help files.....

    Stoned you were right, it was my first in heritance type program and...
  4. Thread: Ttt

    by Syme
    Replies
    2
    Views
    1,043

    cheers, ill give it a try.

    cheers, ill give it a try.
  5. Replies
    5
    Views
    925

    Its having a laugh now

    Seriously, does it make these messages up ?

    D:\Programming\syme.cpp(51) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 1786)
    Please choose the Technical Support...
  6. Thread: Ttt

    by Syme
    Replies
    2
    Views
    1,043

    Ttt

    As my first game ive decided to attempt TTT, im fairly sure i can do the board, input, etc. The parts that baffle me are the AI and Checking for a win.

    I pondered to check for a win via a 'if a O...
  7. Thread: Linked lists ?

    by Syme
    Replies
    1
    Views
    1,076

    Linked lists ?

    Im almost at the end of my first c++ book, it covers a fair wedge of stuff (overloading, file handling, structures and arrays, OOP, etc) but linked lists arent even mentioned.

    My question is...
    ...
  8. Thread: Compilers

    by Syme
    Replies
    1
    Views
    868

    http://www.borland.com/bcppbuilder/freecompiler/...

    http://www.borland.com/bcppbuilder/freecompiler/
    http://www.delorie.com/djgpp/
    http://www.bloodshed.net/
  9. Replies
    5
    Views
    1,230

    Help rekindle my enthusiasm

    ok, im still learning the basics of c++ and have yet to finish my first book (im about 40 pages off). But after christmas i cant seem to find the will to finish it, even though i have another 2 in...
  10. Thread: Resistances

    by Syme
    Replies
    4
    Views
    1,512

    my point was, and although i dont really know...

    my point was, and although i dont really know that much about c++. i cant seem to see where you're outputting your calculated resistance

    "ResVal = res(NoRes-1);

    for (int i = NoRes-2; i>0;...
  11. Thread: Resistances

    by Syme
    Replies
    4
    Views
    1,512

    are you sure the program stops ? or does it...

    are you sure the program stops ? or does it complete without outputting anything further.
  12. Replies
    2
    Views
    1,528

    Basic Graphics Tutorials ?

    Considering i have NO knowledge of c++ graphics, does anyone know where i can find some decent tutorials, or point me in the direction of where to start ? any help appreciated.

    PS: I have the...
  13. in my experience MSVC is the best compiler,...

    in my experience MSVC is the best compiler, you'll often find that people will evade Microsoft products for the sake of doing so, even if they are superior, which is rare, but in this instance, true....
  14. Thread: Help with this!

    by Syme
    Replies
    6
    Views
    1,355

    note to almost here and 'programmer'

    it was me who used that code, to reply to someone elses query a while back, im all for sharing the knowledge, but im also for creditting the original author. The code isnt even that good.
  15. Thread: Do I need a LOOP?

    by Syme
    Replies
    7
    Views
    1,368

    while (counter < 10)//test conditions for loop {...

    while (counter < 10)//test conditions for loop
    {
    cout << counter;//code executed during loop
    counter++;
    }

    perhaps you could invite the user to enter the value for counter, or whatever you...
  16. Thread: opening files

    by Syme
    Replies
    4
    Views
    937

    Not sure if this is what your after, but in its...

    Not sure if this is what your after, but in its most basic form, i'd do it like this:

    #include <fstream.h>

    main()
    {
    char ch;
    char filename[20] = "c:test.txt";
    int mode = ios::out;...
  17. Replies
    1
    Views
    1,086

    Outputting random array entires

    Hi, i have an array (of chars, if it matters) and i basically want to extract random entries from them for output to the screen, any ideas ?

    Any help appreciated.
  18. Thread: Newbie Question

    by Syme
    Replies
    8
    Views
    966

    its not a windows program, as i say, at this...

    its not a windows program, as i say, at this moment in time i know next to nothing, DOS only im afraid :(
  19. Thread: Newbie Question

    by Syme
    Replies
    8
    Views
    966

    yes, exactly like that

    yes, exactly like that
  20. Thread: Newbie Question

    by Syme
    Replies
    8
    Views
    966

    Essentially, i want it to act as if im pressing...

    Essentially, i want it to act as if im pressing space every 40 minutes. Surely its more than a case of

    cout << " ";

    Although i could be wrong.
  21. Thread: Newbie Question

    by Syme
    Replies
    8
    Views
    966

    Newbie Question

    Hi,
    Basically i need to write a program that will press space every 40 minutes, ive started learning c++ but there appears to be no mention on how to do this in the book i have :(

    Any help...
Results 1 to 21 of 21