以下程序执行后的输出结果为()
发布于 2022-03-03 16:47:47
#include <stdio.h> void func(char *p) { p = p + 1 } int main() { char s[] = {'1', '2', '3', '4'} func(s) printf("%c", *s) return 0 }以下程序执行后的输出结果为()
登录后免费查看答案
关注者
0
被浏览
17