Okay, I decided I wanted to learn a bit of the Allegro library, since I now have a fair grasp of atleast the basics of C++. I went to a tutorial and did what it said, and it gave me a ton of Linker errors... I assumed there was something wrong with that tutorial so I went to another-- the same thing happened... This is my code.

Code:
#include <allegro.h>
using namespace std;

int main(int argc,char *argv[])
{
    allegro_init();
    install_keyboard();
    set_gfx_mode(GFX_AUTODETECT,640,480,0,0); //Sets graphics mode!
    readkey();
    return 0;
}
END_OF_MAIN()