Here's my code, why if there is change in the other variables, am I not just changing the row by the variable value? what reason for the others to change?
int a = 1, b = 2, c = 3, valor = 0;
valor = a;
printf("%d\n" , valor);
valor = b++;
printf("%d\n", valor);
valor = ++c;
printf("%d\n", valor);
valor += b;
printf("%d\n", valor);
valor *= c;
printf("%d\n", valor);