10 lines
108 B
Plaintext
10 lines
108 B
Plaintext
int add1 (int x int y){
|
|
int z = (x+y);
|
|
return (z+1);
|
|
}
|
|
|
|
|
|
test{
|
|
int z = 3;
|
|
int x = call add1 (z 4);
|
|
} |