We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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; }