Ich habe ein Stück Code wie dieses (Perl-Datei):
print "9 + 16 = ", add(9, 16), "\n";
print "9 - 16 = ", subtract(9, 16), "\n";
Auch C-Code,
#include<stdio.h>
main ()
{
int x = 9;
int y = 16;
printf(" add() is %d\n", add(x,y));
printf(" sub() is %d\n", subtract(x,y));
// return 0;
}
int add(int x, int y)
{
return x + y;
}
int subtract(int x, int y)
{
return x - y;
}
Wie kann ich diesen C-Code mit Perl ausführen, indem ich Inline::C
? Ich habe versucht, aber ich bin nicht genau bekommen.