Frage : Inline-Problem

ich habe einen pic. angebracht. was ist, tut es mean


use Inline-C;

print „9 + 16 =“, fügen (9, 16), „\ n“ hinzu;
print „9 - 16 =“, subtrahieren (9, 16), „\ n“;

__END__
__C__
int fügen hinzu (int x, int y) {
return x + y;
}

int subtrahieren (int x, int y) {das
return x-y;
}

and, das das Programm ich ist, ließ
laufen
Attachments:

Antwort : Inline-Problem

haben Sie GCC, das auf Ihre Maschine angebracht ist?
Sie sieht wie es sucht nach ihm, um den c-Code zu kompilieren aus.
Weitere Lösungen  
 
programming4us programming4us