Вызов по значению & вызов по ссылке в C [calc площадь и объем сферы]
I have to write a sphere () function that calculates the area and volume of a sphere. The function receives three transfer parameters: the radius and two pointers to double variables, in which the function sphere () writes back the area and the volume of the sphere . The input and output takes place in main (). For a sphere with radius R the following applies: area = 4 * PI * R * R, volume = 4 * PI * R * R * R / 3
Что я уже пробовал:
До сих пор я пришел к этому, это буквально не так много, но я не знаю, как это сделать
#include <stdio.h> #define pi 3.14159 void sphere(double*, int*); int main(void) { setvbuf(stdout, NULL, _IONBF, 0); setvbuf(stderr, NULL, _IONBF, 0); return 0; } void sphere() { }