6 lines
55 B
C
6 lines
55 B
C
|
int addtwo(int a)
|
||
|
{
|
||
|
int x = 2;
|
||
|
return a + x;
|
||
|
}
|