View Code of Problem 1

void Calculate(int a,int b){
int c;
c=a+b;
return c;
}

int main(){
  Calculate(1,1);
}

Double click to view unformatted code.


Back to problem 1