Consider the following assignment statement in a C program, where x and y are integer variables, and x
has been initialized to a valid integer value:
y = x + 1;
Is it always true that after the execution of this line of code, y is 1 larger than x? Try to prove or disprove this statement.