This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
taddeus
/
civicaml
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
33622fca25
Gałęzie
Tagi
master
civicaml
/
test
/
array_scope.cvc
array_scope.cvc
88 B
Historia
Czysty
1
2
3
4
5
6
extern void printInt(int val);
void foo(int[n] arr) {
printInt(n);
foo(arr);
}