#include<stdio.h>
void main()
{
char *ps="I am a beautiful girl!";
int n=4;
ps=ps+n;
printf("字符串中%d个字符后的所有字符为:\n%s\n",n,ps);
}