what is the correct answer of thes question....
public class par
{
public static void main (String[] args)
{
int i=0;
addtwo(i++)
system.out.prin tln(i);
}
static void addtwo(int i)
{
i+=2;
}
}
public class par
{
public static void main (String[] args)
{
int i=0;
addtwo(i++)
system.out.prin tln(i);
}
static void addtwo(int i)
{
i+=2;
}
}
Comment