Search:

Type: Posts; User: Josh Burkholder

Search: Search took 0.01 seconds.

  1. Do the instructions on how to compile the GLUT...

    Do the instructions on how to compile the GLUT for Win32 using MinGW located here work for you:

    HOWTO Compile the OpenGL Utility Toolkit (GLUT) for Win32 with MinGW | MinGW

    ?

    If not, what...
  2. Thread: Adt

    by Josh Burkholder
    Replies
    2
    Views
    1,883

    Re: Adt

    ADT = abstract data type = a programmer defined type with a set of values and a collection of allowable operations on those values.

    Implementation of an ADT constists of a concrete...
  3. Replies
    12
    Views
    1,200

    Re: fread, longs and cheap PCs

    There might be other problems . . . like some error checking that isn't being done, etc., but one thing that you'll need to do is change:

    fread(temp, filesize, 1, fp);

    to

    fread(temp,...
  4. Re: a simple string operation has turned into a cluster.. SOS

    /* this code assumes that the user entered fileName is a NULL terminated string*/

    char filename[13]; // holder for first 8 chars
    char fileName[13]; // user filename in 8.3 format
    char...
  5. Re: Microsoft Visual C++ 6.0 ** Am I missing something?

    I'm don't know why bloodshed allows the code to compile . . . I've never used bloodshed, so I comment on it's ability. However, in Visual C++ 6, your code will compile if you use the Win32...
Results 1 to 5 of 5