mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-03 02:24:11 +08:00
6 lines
72 B
C
6 lines
72 B
C
extern int add(int x,int y);
|
|
int main() {
|
|
add(2,3);
|
|
return 0;
|
|
}
|