Am I doing this right??? | | On second thought, this makes no difference at all. What exactly is the code
that you can't get to work, and what compile errors are you getting?
"Johan Venter" <jventer@writeme.com> wrote in message
news:3f00ceb1$1_1@news.brisbane.pipenetworks.com.. .
> > cout<<"what ever you want to write";
>
> Try some spaces on either side of the '<<':
>
> #include <iostream>
>
> int main(void) {
> cout << "hello";
> return 0;
> }
>
> |