| Bruce Eckel's Thinking in C++, 2nd Ed | Contents | Prev | Next |
#include <iostream>
int function() {
// Function code here (this is a comment)//: C02:Hello.cpp
// Saying Hello with C++
#include <iostream> // Stream declarations
using namespace std;
int main() {
cout << "Hello, World! I am " << 8 << " Today!" << endl;