like if we have an array
int [] a = new int [20]
int []b;
b= new int [a.length];
FOR(INT I=0; I<a.length ; i++)
{
b[i]=a[i];
}
this program is not working in visual c++ it keep saying me that there is no such method as (a.length) in visual c++
int [] a = new int [20]
int []b;
b= new int [a.length];
FOR(INT I=0; I<a.length ; i++)
{
b[i]=a[i];
}
this program is not working in visual c++ it keep saying me that there is no such method as (a.length) in visual c++
Comment