First things first, use code braces around code to make it more readable (either the <> symbol in the format section or type code and /code with square braces)
Secondly, this is an allegro specific problem, and is probably better suited to the allegro forums, but luckly for you, I think I know the source of your problem.
1:
You need to call
acquire_screen();
before and
release_screen();
after any drawing function.
Also, you need to make sure you actualy have the file "Concept6.bmp" in the folder, check for spelling errors too, if they aren't the same, it won't load. A simple way to check if it loaded is to check if background is null, as load_bitmap returns null if it fails.
To solve the tileing issue, you should call
clear_to_color( background, makecol(0, 0, 0));
to clear the background before drawing to it.
I've found this site to be quite useful in explaining the basics of allegro, you should run through its tutorials before you try experimenting on your own:
http://www.cppgameprogramming.com/cgi/nav.cgi?page=index
I left a link on this thread:
http://www.cplusplus.com/forum/beginner/60813/
for anyone who wants to download some of the stuff I've made - make sure you read what I wrote though, as the games were done in the past, while I still had quite a few bad programming practices.