You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
285 B

int func(int aa, int bb, int cc, int dd, int ee, int ff){
int rr = aa + bb + cc + dd + ee + ff;
return rr;
}
int main(){
int a = 1;
int b = 2;
int c = 3;
int d = 4;
int e = 5;
int f = 6;
int r = func(a, b, c, d, e, f);
return r;
}