This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
kjhammerle
/
lonely-tiger
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
ffddc05858
Gałęzie
Tagi
master
lonely-tiger
/
tests
/
struct
/
reference
reference
85 B
Historia
Czysty
1
2
3
4
5
6
7
void main() {
int a = 5;
int& b = &a;
a = 6;
print a;
print b;
}