目录define和const使用const和define区别总结
define和const使用const和define区别`#include <stdio.h>
//const不能重定义,不可以定义两个一样的,而define通过undef取消某个符号的定义,再重新定义const double PI=3.14;//const double PI=3.145;
void main() { // //分析过程 //#define 就是一个简单的替换!!! //C 其实是 A/A+33 = 1/1 + 3 3 = 1 + 9 = 10 //C 其实是 A/(A+3)3 = 1/(1+3) 3 = 1/4 3 = ? double d1 = 1.0/4 3 ; // 0.25 * 3 = 0.75 printf(“\nc=%.2f”, C);// 问 c = ? printf(“\nd1=%.2f”, d1); getchar();}
#include <stdio.h>//#define DEBUGvoid main() {
printf("ok, 调试信息");
printf("hello, 另外的信息");
// printf(“%d”,n); getchar();}`
相关推荐
© 2020 asciim码
人生就是一场修行