Question: Complete this program, by adding a function called mag( ) to calculate the magnitude of a vector. You'll need to add a prototype before main(
Complete this program, by adding a function called mag( ) to calculate the magnitude of a vector. You'll need to add a prototype before main( ), and the implementation (header & body) of the function after main( );
reminder: mag = sqrt (x 2 + y 2)
Calling it with something like:
vec_length = mag(x, y);
Name your program functions1.cpp
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
