Στη 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 &lt;iostream&gt;</span>
<span class="kw" style="color: rgb(0, 0, 176); ">int</span> main ()
{
  std::cout &lt;&lt; <span class="str" style="color: rgb(96, 0, 48); ">&quot;Η C++ κάνει θαύματα&quot;</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 &lt;iostream.h&gt;</pre><pre style="white-space: pre-wrap; word-wrap: break-word; ">Αυτό δεν είναι ακριβώς λάθος αλλά εξαρτάται ποιον compiler χρησιμοποιείς... Εάν χρησιμοποιείς τον default compiler σε linux σύστημα, τότε δεν χρειάζεσαι την προέκταση &quot;.h&quot;... Αυτό θα το χρησιμοποιείς εάν χρησιμοποιείς άλλον 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 &lt;&lt;&quot;Η C++ κάνει θαύματα!&quot; ;</pre><pre style="white-space: pre-wrap; word-wrap: break-word; ">Εδώ δεν ορίζεις σε ποια βιβλιοθήκη αναφέρεται η εντολή &quot;cout&quot;... Είτε θα χρησιμοποιείς το &quot;<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&quot; που ορίζει ότι θα χρησιμοποιείται η εντολή &quot;cout&quot; από τη βιβλιοθήκη &quot;std&quot; (την στάνταρ, δηλαδή την iostream). Μια άλλη παραλλαγή είναι να ορίζεις πιο πριν ότι οι εντολές που ακολουθούν ορίζονται στη &quot;std&quot; βιβλιοθήκη όπως:</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; ">Τότε μπορείς να χρησιμοποιήσεις απευθείας την εντολή &quot;cout&quot;.</pre>
</span></span></font></pre></span></pre></span></div>