#include #include using namespace std; extern float hw_cos_top(float); int main(void) { float test_val = 16.5; float hw_result = hw_cos_top(test_val); cout << "hw_result" << hw_result << endl; return 0; }