华为代码注释标准
Posted 西北逍遥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为代码注释标准相关的知识,希望对你有一定的参考价值。
/****************************************************************************
File name: count.c
Directory: /home/luo/myfile/c/20161114/
Author: lijing
Description:
1、运算符使用
2、运算符总结
3、打印
Others: 暂无说明
History:
1、添加打印功能
Date: 2016-11-14 AM 10:50
Author: lijing
Modification: 添加打印功能
2、修改打印功能
Date: 2016-11-14 PM 13:15
Author: lijing
Modification: 修改打印功能,实现了参数传递
******************************************************************************/
#include <stdio.h>
int main(void)
{
int a;
int b;
int c;
int d;
a = 17;
b = 4;
c = a/b;
d = a % b;
++a;
a++;
printf("a = %d, b=%d, c=%d, d=%d \n",a,b,c,d);
return 0;
}
以上是关于华为代码注释标准的主要内容,如果未能解决你的问题,请参考以下文章