IV. Write down the function declaration statement for the following
1. Name of the function: circle
Return data type: void
Arguments: No
2. Name of the function: si
Return data type: float
Arguments: 3 arguments (1st float, 2nd int, 3rd float)
3. Name of the function: length
Return data type: int
Arguments: 1 argument (string)
4. Name of the function: product
Return data type: void
Arguments: 2 arguments (both int data type)
5. Name of the function: drawline
Return data type: void
Arguments: 2 arguments (1st int, 2nd float)
can anyone pls answer it fast pls
Answers
Answered by
0
Answer:
1.void circle() {
}
2.float si(float a,int b,float c) {
}
3.int length(string a) {
}
4.void product(int a,int b) {
}
5.void drawline(int a,float b) {
}
Explanation:
Hope this might help
Similar questions