This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
taddeus
/
civicaml
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Árbore:
f282d9b512
Ramas
Etiquetas
master
civicaml
/
test
/
array_scope.cvc
array_scope.cvc
88 B
Histórico
Raw
1
2
3
4
5
6
extern void printInt(int val);
void foo(int[n] arr) {
printInt(n);
foo(arr);
}