Skip to content
Snippets Groups Projects
test8.cpp 171 B
Newer Older
  • Learn to ignore specific revisions
  • #include <iostream>
    
    extern "C" {
        double average(double, double);
    }
    
    int main() {
        std::cout << "average of 40.0 and 44.0: " << average(40.0, 44.0) << std::endl;
    }