HP SunSoft Pascal 4.0 Manuel d'utilisateur Page 177

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 333
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 176
The C++–Pascal Interface 153
7
Simple Types
Simple types pass in a straightforward way, as in the following example:
The Pascal function,
RetReal.p
function RetReal (r: real): real;
begin
RetReal := r + 1
end;
The C++ main program,
RetRealMain.cc
#include <stdio.h>
extern "C" double RetReal (double);
int main(void)
{
double r, s;
r = 2.0;
s = RetReal (r);
printf (" %f \n", s);
}
The commands to compile and
execute RetReal.p and
RetRealMain.cc
hostname% pc -c RetReal.p
hostname% CC RetReal.o RetRealMain.cc -lpc
hostname% a.out
3.000000
Vue de la page 176
1 2 ... 172 173 174 175 176 177 178 179 180 181 182 ... 332 333

Commentaires sur ces manuels

Pas de commentaire