#include<stdio.h>
int length(char*s)
{
int i,count;
while(*s!='\0')
{
*(s++);
count++;
}
return count;
} int main()
{
char s[];
while(gets(s)!=NULL)
{
int t;
t=length(s);
printf("%d\n",t);
}
return ;
}

最新文章

  1. GOLANG 声明
  2. phpcms后台获取当前登录账号的数据
  3. 基于webrtc的视频通话时webrtc的接口调用流程
  4. 微分方程&mdash;&mdash;基本概念和常微分方程的发展史
  5. (转)win32Application和win32ApplicationConsole
  6. Xamarin.Android开发实践(十八)
  7. Redis缓存服务搭建及实现数据读写
  8. netstat命令[转]
  9. MongoDB五种树形结构表示法
  10. C#中关于DateTime的最大值和最小值
  11. BZOJ 1622: [Usaco2008 Open]Word Power 名字的能量
  12. ffmpeg ffplay ffprobe资料整理
  13. 剑指Offer——银行网申内容模版
  14. Gitlab管理网页老是500错误?增加物理内存,增加cpu吧
  15. Objective-C RunTime 学习笔记 之 atomic/nonatomic 关键字
  16. 我为什么要选择RabbitMQ ,RabbitMQ简介,各种MQ选型对比(转载)
  17. Nginx SSL TLS部署最佳实践
  18. Qt5_选择文件对话框
  19. Linux 对文件进行加密存放
  20. chrome浏览器调试报错:Failed to load resource: the server responsed width a status of 404 (Not Found)&hellip;http://127.0.0.1:5099/favicon.ico

热门文章

  1. select下拉箭头改变,兼容ie8/9
  2. setTimeOut、setInterval与clearInterval函数
  3. hdfs文件上传机制与namenode元数据管理机制
  4. 关于EditText.setText()无法显示的问题
  5. Opencv模块功能介绍
  6. 64_f2
  7. Deep Learning基础--线性解码器、卷积、池化
  8. linux指令和文件系统
  9. Hadoop-MR[会用]MR程序的运行模式
  10. 如何让Footer无论页面长短都在最底部, 并和正文保持固定高度?