What is the correct syntax to declare an array of size 10 of-03223
What is the correct syntax to declare an array of size 10 of int data type?
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Mid Term - Quiz No.13.
What is the correct syntax to declare an array of size 10 of int data type?
int [10] name;
name[10] int;
int name[10];
int name[];