Question: What is wrong with this code? int size; double values [ size ] ; There is nothing wrong with this code. The data types don't
What is wrong with this code?
int size;
double valuessize;
There is nothing wrong with this code.
The data types don't match double and int
You didn't give size a value before using it
You can't use a variable to give an array a size.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
