mirror of
https://github.com/foxsen/archbase.git
synced 2026-03-25 22:41:56 +08:00
14 lines
109 B
C
14 lines
109 B
C
int add(int a,int b)
|
|
{
|
|
return a+b;
|
|
}
|
|
|
|
int ref(void)
|
|
{
|
|
|
|
int t1 = 12;
|
|
int t2 = 34;
|
|
|
|
return add(t1,t2);
|
|
}
|