hmm

i think i know whats wrong
hes running the .cpp file as a script without compiling
to compile use g++ hello.cpp -o hello and run as ./hello, n i hope u got
my direct mail to u

hth

vi hello.cpp
[irfan@Main irfan]$ ./hello.cpp
bash: ./hello.cpp: Permission denied
[irfan@Main irfan]$ chmod 755 hello.cpp 
[irfan@Main irfan]$ ./hello.cpp 
./hello.cpp: line 4: syntax error near unexpected token `main(v'
./hello.cpp: line 4: `int main(void)'
[irfan@Main irfan]$ 

almost same error as what was said
n its very likely 100% what went wrong


On Mon, 2001-12-31 at 18:06, Lee Roberts wrote:
> Change #include <iostream> to #include <iostream.h >
> 
> At 09:37 PM 12/30/2001 -0700, Ken Thompson wrote:
> >
> >> #include <iostream>
> >>
> >> int main()
> >> {
> >>    cout << "Hello World!" << endl;
> >>    return(0);
> >> }
> >>
> >> Try the above :)
> >>
> >
> >[ken@spooky Desktop]$ ./hello1.cpp
> >./kello1.cpp: line 4: syntax error near unexpected token `main()'
> >./kello1.cpp: line 4: `int main()'
> >
> >>   Been a long time, but shouldn't this be
> >>
> >>   int main();
> >
> >Tom and Dwain,
> >Same error message using each of the suggestions.
> ><scratching head with a puzzled frown>
> >The code comes right out of Sams "Teach yourself C++ in 24hrs" and in 
> >previous versions of MDK I've had it work.
> >I'm going back to trying to learn C++, had to quit studies the first time 
> >around.
> >-- 
> >Ken Thompson, North West Antique Autos
> >Payette, Idaho
> >Email: [EMAIL PROTECTED]
> >http://www.nwaa.com
> >Sales and brokering of antique autos and parts.
> >
> >Linux- Coming Soon To A Desktop Near You
> >Registered Linux User #183936
> >
> >
> >Want to buy your Pack or Services from MandrakeSoft? 
> >Go to http://www.mandrakestore.com
> 
> 
> ----
> 

> Want to buy your Pack or Services from MandrakeSoft? 
> Go to http://www.mandrakestore.com



_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com

Reply via email to