1#include <stdio.h>2void main()3{4char *ps="this is a book";5int n=11;6ps=ps+n;7printf("%s",ps);8}程序的运行结果如下: A、book; B、ook; C、ok; D、k 发布时间:2025-05-16 22:49:48