Its me..Again,..Need help with CODE::BLOCKS

Apr 22, 2008 at 11:05pm
For those of u who helped me last time (my last post) would know that i tried to use Visual C++ but an error occurred during the installation. so i decided to try another recommended software for C++ -> CodeBlocks ... and i have a problem:
i tried to run the program ("EXECUTE" it) but at the bottom where it says "BUILD LOG" nothing appears ...i am pretty sure it has to do with the compiler or something like that...

can anyone who undersatnd in that stuff please help me out here!
thanks :D
Apr 23, 2008 at 12:04am
Are you sure it isn't waiting for any input from you? Also check to see if a Message Box or something popped up behind any windows.
Apr 23, 2008 at 12:19am
I JUST TYPE THIS:

"#include <iostream>
int (main)
{
std::count<<"HELLO"<<std::endl;
return 0;
}"

and nothing happens

what could it be?
Apr 23, 2008 at 12:32am
SORRY I POSTED IT TWICE
Last edited on Apr 23, 2008 at 12:32am
Apr 23, 2008 at 1:15pm
Your program should be:

1
2
3
4
5
6
#include <iostream>

int main () {
   std::cout << "HELLO" << std::endl;
   return 0;
}
Apr 23, 2008 at 7:51pm
that is my program
but stil..doesnt work
Topic archived. No new replies allowed.