Search:

Type: Posts; User: Starstreak

Search: Search took 0.07 seconds.

  1. Replies
    7
    Views
    1,234

    Re: what is the way to Calculate

    The % sign means divide the two numbers and give us only the remainder.
  2. Replies
    7
    Views
    1,234

    Re: what is the way to Calculate

    How does c = 3?

    For clarity, rewrite the code without using shorthand (augmented operators).


    int a = 1;
    int b = 2;
    int c = 3;
    a = a + 5;
    b = b * 4;
Results 1 to 2 of 2