void func( ______ ); int main() { double aData[6][4]; func(&aData[4]); return 0; }
9-Given the code segment below, what should be the data type of the formal parameter in the function prototype of func(), given the call from main()?
Note that function prototypes need not include the identifier (name of the parameter), so do NOT put any variable name in your answer. Remove any space in your answer. If the accessing is wrong, answer INVALID (in all capital letters).
void func( ______ );
int main() {
double aData[6][4];
func(&aData[4]);
return 0;
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps