What is the value of the var variable after the execution of the following snippet of code: int var;
var = -1;
var = var - 1;
var = var - var;

Solved
Show answers

Ask an AI advisor a question