字符串长度
#include<stdio.h> int main() { char a[100]; gets(a); int n=strlen(a); printf("%d",n); return 0; }