float volume(float,float);
void display(float,float,float);
i) provide a function definition for function volume to calculate the volume of a cylinder with the formula ; V = pai x radius x radius x height
ii) provide a function definition for function display to print radius, height and volume of a cylinder
iii) write statements to call the above two functions
iv) write a complete C program to implement step (i) to (iii)
Answers
Answered by
1
Answer:
A variable is a symbolic name for (or reference to) information. They are called variables because the represented information can change but the operations on the variable remain the same. In general, a program should be written with "Symbolic" notation, such that a statement is always true symbolically.
Similar questions