mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +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);
|
|
} |