const关键字

#include stdio.hint main() {const intLENGTH = 10;const intWIDTH = 5;const char NEWLINE = \\n;

编程学习网为您整理以下代码实例,主要实现:const关键字,希望可以帮到各位朋友。

@H_301_1@#include <stdio.h>

int main() {

   const int  LENGTH = 10;
   const int  WIDTH = 5;
   const char NEWliNE = '\n';
   int area;  

   area = LENGTH * WIDTH;
   printf("value of area : %d", area);
   printf("%c", NEWliNE);

   return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

常量数据值可以是许多数据类型,但必须在创建常量时分配。#include stdio.h