c51学习的好书!

源代码在线查看: tst_strlen.c

软件大小: 86 K
上传用户: cando99
关键词: c51
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include                   /* for printf */
				void tst_strlen (void) {
				   char buf [] = "Find the length of this string";
				   int len;
				   len = strlen (buf);
				   printf ("string length is %d\n", len);
				}
							

相关资源