Computer Science
Fill in the blanks:
The statement n++ is equivalent to _________.
Java Operators
7 Likes
Answer
n = n + 1
Answered By
3 Likes
Related Questions
Fill in the blanks:
If a=10;b=++a, then value of a and b will be _________ and _________.
Fill in the blanks:
If a= -1 , then the output of a++ will be _________.
Fill in the blanks:
If int a=43;int b=5;int c=0; and c = a%b; then the value of c will be _________.
Fill in the blanks:
If int m=8; m*=8; then the output of m will be _________.