1
1
mirror of https://github.com/foxsen/archbase.git synced 2026-03-25 14:32:00 +08:00
Files
archbase/materials/chapter2/add_and_ref.c
2021-10-27 19:14:51 +08:00

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);
}