mirror of
https://github.com/lWolvesl/leetcode.git
synced 2026-01-13 02:38:37 +08:00
7 lines
98 B
C
7 lines
98 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
char* a= "I love China!";
|
|
a = a+7;
|
|
printf("%s\n",a);
|
|
} |