mirror of
https://github.com/yanfeizhang/coder-kung-fu.git
synced 2026-02-11 06:15:28 +08:00
9 lines
138 B
C
9 lines
138 B
C
#include <stdio.h>
|
|
#include "libadd.h"
|
|
|
|
int main(void)
|
|
{
|
|
int ret = add(2,3);
|
|
printf("C调用Go函数2+3=%d", ret);
|
|
return 0;
|
|
} |