Question
(C++) Write an algorithm to compute the volume of water in cubic feet, flowing through a pipe of diameter d in feet, with a velocity of v feet per second.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
Problem 1int main(int argc, char** argv) {
// character array declaration
char name[100];
// ask user's name
printf("Hi!\n"
"Please enter your name : ");
// get his/her name...