What will be the value of 'n' after the execution of the code given below?
int x=2, m=1, C=-1;
int n = x + c
nn-C+x
System.out.println(n);
Answers
Answered by
1
Answer:
you will get error as your c is negative and you have put it as int and int always has positive numbers...
Similar questions