Meena Rao

Greenhorn
+ Follow
since Dec 11, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Meena Rao

Could u please tell me what are all the sites u visited to take mock exam.
24 years ago
Hi,
Can anyone tell me the site name which has the latest mock exam.
Thanks for the reply.
Yeah, I have tried with ++c1.i. But, what I wanted to know is why the c1.i++ does not increment the value of i and store it in i.
class counter{
int i=10;
public static void main(String args[]){
counter c1 = new counter();
c1.i=c1.i++;
System.out.println(c1.i);
}}
When I checked o/p is 10. I thought it first assigns the value to the variable and then increments , if this is the case 10 should have been put in i and the same variable should be incremented to show the result as 11.