Predict the output of following code:
main()
{
int i=-1;
-i;
//No change in value of i
printf(“%d,%d”,i,-i);
}
1. -1, 1
2. -1, -1
3. 1, 1
4. 0, 1
Answers
Answered by
0
option number 3 will be the answer
Similar questions