0
how can b takes two values whiles it is given as integer in the first line
int a = 4; int b = 6; b = a++; Console.WriteLine(++b);
2 Antworten
0
I think because your giving b a value, but then your actually giving b a new value
int a = 4; int b = 6; b = a++; Console.WriteLine(++b);