Displaying 1 result from an estimated 1 matches for "bruceeckel".
2008 Oct 01
0
OT: C++ Newbie "Hello World" problem SOLVED
...rld! I am 8 Today!
[devel at dell2400 ~]$
What I was lacking was the "./" in front of a.out the file produced
when I compiled Hello.cpp :-)
I will continue reading the book now! :-) Lanny
//: C02:Hello.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Saying Hello with C++
#include <iostream> // Stream declarations
using namespace std;
int main() {
cout << "Hello, World! I am "
<< 8 << " Today!" << endl;
} ///...