This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
taddeus
/
civicaml
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Árvore:
33622fca25
Ramos
Etiquetas
master
civicaml
/
test
/
array_scope.cvc
array_scope.cvc
88 B
Histórico
Em bruto
1
2
3
4
5
6
extern void printInt(int val);
void foo(int[n] arr) {
printInt(n);
foo(arr);
}