6 lines
72 B
C
6 lines
72 B
C
extern int add(int x,int y);
|
|
int main() {
|
|
add(2,3);
|
|
return 0;
|
|
}
|