fenby C语言 P33

#include <stdio.h>

int main(void)
{
char *ps="my dream is to be a programmer";
printf("%s ",ps);
printf("%c",*(ps+5));
return 0;
}

原文地址:https://www.cnblogs.com/amiaojiang/p/4507981.html