F
Francogrex
I forgot all my C programming a little help would do please:
I want to write a very simple program that passes two command line
parameters like below. (The aim of this simple test is for later to
call C programs from common lisp applications thorough the so-called
foreign function interface). Thanks
int main (int x, int y)
{
....
...x+y
....
}
and then call the program (say it's called test) at the prompt:
I want to write a very simple program that passes two command line
parameters like below. (The aim of this simple test is for later to
call C programs from common lisp applications thorough the so-called
foreign function interface). Thanks
int main (int x, int y)
{
....
...x+y
....
}
and then call the program (say it's called test) at the prompt: