cplusplus.com cplusplus.com
cplusplus.com   C++ : Forums : Beginners : Its me..Again,..Need help with CODE::BLO...
  Search:
- -
C++
Information
Documentation
Reference
Articles
Sourcecode
Forums
Forums
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programm...
Articles
Lounge
Jobs

-

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

aTone (12)
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
|
firedraco (848)
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.
|
aTone (12)
I JUST TYPE THIS:

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

and nothing happens

what could it be?
|
aTone (12)
SORRY I POSTED IT TWICE
| Last edited on
Ganon11 (54)
Your program should be:

1
2
3
4
5
6
#include <iostream>

int main () {
   std::cout << "HELLO" << std::endl;
   return 0;
}
|
aTone (12)
that is my program
but stil..doesnt work
|

This topic is archived - New replies not allowed.
Home page | Privacy policy
© cplusplus.com, 2000-2009 - All rights reserved - v2.2
Spotted an error? contact us