i cant get the program to work. what is wrong?
add-number ( integer a; integer b ) ( add-number = integer a + integer b )
Obviously, you're not familiar with C at all. Please study a C textbook before continuing! Just to illustrate what's wrong with your code: In C, your function would be
int add_number(int a, int b) { return a + b; }