#include int add(int, int); // declared but never defined int main() { std::cout << add(3, 4) << "\n"; return 0; }