9 lines
157 B
C
9 lines
157 B
C
|
#include "./my/includes/my.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int a = 10, b = 20;
|
||
|
printf("10+20=%d\n", sum(a, b));
|
||
|
printf("20-10=%d\n", sub(b, a));
|
||
|
return 0;
|
||
|
}
|