Hilfe, um die Datei in C zu kompilieren unter Linux

H

H_D_R

Guest
Hallo alle,

Ich lerne C auf Linux.
Ich habe versucht, sehr einfach Code zu kompilieren "Fiert.cc"

Code:

1: # include <iostream.h>

2:

3: main ()

4: (

5: float pi = 3.14;

6: cout << "Der Wert von pi ist" <<pi << "\ n";

7: return 0;8:)
 
Hallo

Alles im Standard-Header wie <iostream> ist in std-Namensraum, also
Es ist std:: cin und std:: cout.
btw, cin-und Gerichtskosten sind nicht Funktionen.

ändern iostream.h durch ..iostream

Code:# include <iostream>

main ()

(

float pi = 3.14;

std:: cout << "Der Wert von pi ist" <<pi << "\ n";

return 0;

)
 
Thank you so much aospinas,

Ich habe die Lösung.
BTW, konnte ich die Ausgabe von meinem Code auch sehen, aber das Problem war Warnung.war es, die auf jeder Compilation.

anyway thanks a lot again ...!!!

--- Bless you ..

<img src="http://www.edaboard.com/images/smiles/icon_biggrin.gif" alt="Very Happy" border="0" /><img src="http://www.edaboard.com/images/smiles/icon_biggrin.gif" alt="Very Happy" border="0" />
 

Welcome to EDABoard.com

Sponsor

Back
Top