#include <stdio.h> #include <string.h> int main(void) { char s[] = "You may go farther and fare worse."; printf("%d\n", strlen(s)); return 0; } ...
確定! 回上一頁