Search:

Type: Posts; User: Green

Search: Search took 0.01 seconds.

  1. Thread: harmonic mean

    by Green
    Replies
    4
    Views
    2,563

    Semicolon's after declaration of structs... //...

    Semicolon's after declaration of structs...

    // structure template
    struct par
    {
    double a;
    double b;
    };
  2. Replies
    8
    Views
    2,111

    There should be instructions in...

    There should be instructions in allegro\docs\build

    usully you type something like

    cd c:\allegro
    fix.bat bcc32
    make
    make install

    and all the files fill be copied to the right folders and...
  3. Thread: C++ header files

    by Green
    Replies
    2
    Views
    971

    The compiler will only compile code between...

    The compiler will only compile code between #ifndef xxx and #endif, if it hasn't encountered #define xxx before.It's sometimes used to stop the same header file being included twice:
    #ifndef...
Results 1 to 3 of 3