Computer Applications
If int a = 25, b = 5, c = 0; what value is stored in c? When c = a % b;
- 5.0
- 5
- 0
- none
Related Questions
What will be the output of a & b in the following, if int a, b; a=10; b=a++;
What will be the output of a++ when int a = -1;
What is the result of the following in Java statement?
int m=8; m*=8; System.out.println("The output =" + m);double c; int x, y, z; x = 5; y = 10; z = 11; c = x*y+z/2;The value stored in c is: