#include <stdio.h>
#define PI 3.14 /*为什么不是“PI=3.14”为什么不需要“=”号*/
int main()
{
printf("圆周率:%f\n",PI);
return 0;
}
因为这是定义常量,不需要加=