运行 ❯
获取你
自己
的网站
×
更改方向
更改主题,深色/浅色
转至 Spaces
#include <stdio.h> #include <string.h> int main() { char word[] = "Computer"; printf("The word '%s' has %d characters in it.", word, strlen(word)); return 0; }
单词“计算机”有 8 个字符。