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

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
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.
I JUST TYPE THIS:

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

and nothing happens

what could it be?
SORRY I POSTED IT TWICE
Last edited on
Your program should be:

1
2
3
4
5
6
#include <iostream>

int main () {
   std::cout << "HELLO" << std::endl;
   return 0;
}
that is my program
but stil..doesnt work
Topic archived. No new replies allowed.