Please help me to answer this question because I don’t understand how to answer it | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please help me to answer this question because I don’t understand how to answer it

The get Area function returns a double number and has no formal parameters . A) Rewrite a valid function call getArea and assign its return value to a double variable named area. B) Rewrite a valid function prototype for the getArea function from question a.

24th Feb 2020, 2:17 PM
mamoun hydr
mamoun hydr - avatar
1 Answer
+ 1
double area = getArea(); //no arguments passed to function, returns double value so stored in a double variable. Prototype : double getArea(void) ; Prototype is consist return type, function name, function parameter types sequentially as in implementation.. Should included before using it (at begin).
24th Feb 2020, 2:27 PM
Jayakrishna 🇮🇳