I want to do something like this:
String[] name=new String[5];
String[] type=new String[5];
name[0]="variable";
type[0]="int";
name[0]=(type[0])(<any value to be assigned>);
The main issue I'm facing is typecasting like this.It says ';' expected after type[0].