Which of the following is not a correct way to initialize an array?
a. int n[ 5 ] = { 0, 7, 0, 3, 8, 2 };
b. int n[] = { 0, 7, 0, 3, 8, 2 };
c. int n[ 5 ] = { 7 };
d. int n[ 5 ] = { 9, 1, 9 };
a. int n[ 5 ] = { 0, 7, 0, 3, 8, 2 };
Computer Science & Information Technology
You might also like to view...
A lookup function that returns a value from a list based on an index number is the ________ function
A) WEEKDAY B) SERIAL C) CHOOSE D) WORKDAY
Computer Science & Information Technology
What must be established to properly deal with the seemingly infinite number of risks to each project?
A. Proper risk assessment B. Project scope C. Project quality assurance D. Project strategic plan
Computer Science & Information Technology