11Given the code segment below, what should be the data type of a in the function prototype of func(), given the call from main()? Use
Question 11Given the code segment below, what should be the data type of a in the function prototype of func(), given the call from main()? Use pointer notation.
void func( ______ a); int main() { double aData[15]; func(aData); return 0;
}
Step by step
Solved in 2 steps