I have a char array which need to check each and every character untill there is no more character to check,
so in C usually we write as:
for(i=0;my_num_Array[i]!='\0';i++)
{
// some code here
}
But when i tried the same for java it isn't working!
Any idea what should I do?