摘要:
关于上、下拉电阻的总结整理分类:Anolog&&Digital2012-03-15 16:3511人阅读评论(0)收藏举报 在电路中,我们经常接触到上、下拉电阻的概念,它们到底有什么作用?为什么?这个问题并不单纯,因为这个问题本身就不够具体,因为不同的应用场合,它们的作用和使用的原因是不同的!下面我... 阅读全文
摘要:
#include #include int main(){char ptr[]={ "abcdefghijklmnopqrstuvwxyz "};char *p,*str= "m ";p=ptr;printf( "%s\n ",strsep(&p,str));printf( "%s\n "... 阅读全文
摘要:
字符串倒序输出的两个写法采用指针的方法#include#include"iostream"#includeintmain(){char*src="hello";intlen=strlen(src);char*dest=(char*)malloc(len+1);char*d=dest;char*s=&... 阅读全文