这个人很懒,暂无签名信息
手头的LPC54114 万利板子,和官方的lpcxpresso54114 并不一样,但是例程可以修改之后使用 下面的是手头的板子: http://www.manley.com.cn/web/product_detail.asp?pro=326 1 官方网站: https://www.nxp.com/support/developer-resources/evaluation-dev...
2008-05-26 17:03 我们对C的%运算知多少呢?当是正整数时,可能大家都知道。例如:5%3等于2, 3%5等于3。当存在负数时呢?先看看例子:例一:int main(){ int x; x = -6%5; printf(%2d/n,x); x = 6%-5; printf(%2d/n,x); x = 1%-5; printf(%2d/n...