运行 ❯
获得
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> #include <string.h> int main() { char myStr[] = "4096 bytes should be enough"; int pos = strspn(myStr, "0123456789"); printf("%d", pos); return 0; }
4