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++;
pr...
asked by
08.08.2018 / 01:36