C
myerel
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c语言书写规范
/***************************Document HeadHistory 1. xxxxx 2. xxxxx*****************************/#include /* Functions Feclaration */bool IsDigit(char cChar);bool IsDig原创 2012-11-02 05:25:08 · 802 阅读 · 0 评论 -
可变参数函数
#include int iVar = 0;char cVar = '';/* Call MyPrintf */MyPrintf("Myprintf test %d, %c", iVar, cVar);unsigned int MyPrintf(char *pchFormat, ... ){ /* Get Argument Number */ unsigned i原创 2012-12-06 22:22:30 · 432 阅读 · 0 评论 -
VS总是重新编译,即使没有修改文件
工具->选项->项目和解决方案MSbuild项目生成输出详细信息:最小改为争端编译,看输出可能的原因:修改过windows的系统时间,系统记录文件时间戳为未来的某个时间,导致编译器永远判断文件修改够解决办法: 修改并保存一下问题文件.使得时间戳重置原创 2016-04-07 13:54:19 · 5171 阅读 · 0 评论
分享