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
/
P8
/
c8-21.c
c8-21.c
100 B
Histórico
Raw
1
2
3
4
5
6
7
#include <stdio.h>
int main()
{char *a="I love China!";
a=a+7;
printf("%s\n",a);
return 0;
}