Search:

Type: Posts; User: ohad

Search: Search took 0.11 seconds.

  1. Re: hi if u can help me please to figure this how D become result of 1

    thanks
  2. hi if u can help me please to figure this how D become result of 1

    int a = 1;
    int b = 2;
    int c;
    int d;
    c = ++b;//3
    d = a++;//2
    c++;//4
    System.out.println("a = " + a);
    System.out.println("b = " + b);
    System.out.println("c = " + c);
Results 1 to 2 of 2