This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
hongwenjun
/
cpp
espejo de
https://github.com/hongwenjun/cpp
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Árbol:
e5b1b134c2
Ramas
Etiquetas
main
cpp
/
C5
/
P7
/
c7-19-2.c
c7-19-2.c
96 B
Histórico
Raw
1
2
3
4
5
6
7
8
//file2.c
extern A;
int power(int n)
{int i,y=1;
for(i=1;i<=n;i++)
y*=A;
return(y);
}