View difference between Paste ID: 1z8AJvz9 and tjFrfwLW
SHOW: | | - or go back to the newest paste.
1-
void suma(int x, int y, int sum){
1+
void suma(int x, int y, int z){
2-
	suma = x+y;
2+
	z= x+y;
3
}
4
5
int main(){
6-
	int sum = 7,x=0,y=0;
6+
	int c= 7,a=0,b=0;
7-
	suma(x,y,suma);
7+
	suma(a,b,c);
8
}