35.8k views
4 votes
To create the array variable named ar, you would use :A. int ar;

B. int() ar;
C. int[] ar;
D. None of these

User Ovi Tisler
by
5.8k points

1 Answer

4 votes

Answer: (C)

Step-by-step explanation:

You can declare it as:

int[ ] ar; or

int ar[ ];

User Dorje
by
5.5k points