Answers for "top 50 questions about arrays"

0

top 50 questions about arrays

int[] ab = new int[30];
 
int[] cd = new int[50];
 
ab = cd; //Compiler checks only type, not the size
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language