Στη c++ για το παράδειγμα που χρησιμοποιείς η δομή πρέπει να είναι ως εξής:
<div><br></div><div><span class="Apple-style-span" style="font-family: verdana; font-size: 12px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
<span class="prep" style="color: rgb(80, 0, 112); ">#include <iostream></span>
<span class="kw" style="color: rgb(0, 0, 176); ">int</span> main ()
{
std::cout << <span class="str" style="color: rgb(96, 0, 48); ">"Η C++ κάνει θαύματα"</span>;
<span class="kw" style="color: rgb(0, 0, 176); ">return</span> 0;
}</pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><br></pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
Στον δικό σου κώδικα έχεις τα εξής λάθη:</pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="font-family: arial; font-size: 13px; white-space: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; border-collapse: collapse; "><pre style="white-space: pre-wrap; word-wrap: break-word; ">
<br></pre><pre style="white-space: pre-wrap; word-wrap: break-word; ">#include <iostream.h></pre><pre style="white-space: pre-wrap; word-wrap: break-word; ">Αυτό δεν είναι ακριβώς λάθος αλλά εξαρτάται ποιον compiler χρησιμοποιείς... Εάν χρησιμοποιείς τον default compiler σε linux σύστημα, τότε δεν χρειάζεσαι την προέκταση ".h"... Αυτό θα το χρησιμοποιείς εάν χρησιμοποιείς άλλον compiler και σου βγάζει λάθος.</pre>
</span></pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><br></pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
<span class="Apple-style-span" style="font-family: arial; font-size: 13px; white-space: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; border-collapse: collapse; "><pre style="white-space: pre-wrap; word-wrap: break-word; ">
cout <<"Η C++ κάνει θαύματα!" ;</pre><pre style="white-space: pre-wrap; word-wrap: break-word; ">Εδώ δεν ορίζεις σε ποια βιβλιοθήκη αναφέρεται η εντολή "cout"... Είτε θα χρησιμοποιείς το "<span class="Apple-style-span" style="border-collapse: separate; font-size: 12px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">std::cout" που ορίζει ότι θα χρησιμοποιείται η εντολή "cout" από τη βιβλιοθήκη "std" (την στάνταρ, δηλαδή την iostream). Μια άλλη παραλλαγή είναι να ορίζεις πιο πριν ότι οι εντολές που ακολουθούν ορίζονται στη "std" βιβλιοθήκη όπως:</span></pre>
<pre style="white-space: pre-wrap; word-wrap: break-word; "><font class="Apple-style-span" size="3"><span class="Apple-style-span" style="border-collapse: separate; font-size: 12px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"><span class="Apple-style-span" style="font-family: verdana; white-space: normal; "><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
<span class="kw" style="color: rgb(0, 0, 176); ">using</span> <span class="kw" style="color: rgb(0, 0, 176); ">namespace</span> std;</pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
<br></pre><pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Τότε μπορείς να χρησιμοποιήσεις απευθείας την εντολή "cout".</pre>
</span></span></font></pre></span></pre></span></div>