#include extern int add(int, int); int main() { int r = add(3, 4); std::cout << "add(3, 4) = " << r << "\n"; return 0; }