#include <stdio.h>. int strlen(char* s). {. int i = 0;. while (s[i] != 0) i++;. return i;. } int main(). {. char s[100];. gets(s);.
確定! 回上一頁