• 2021-04-14
    执行常量定义语句const int size 100 sizeof int 后 符号常量size的值为 10
  • 0

    内容

    • 0

      下列常量定义中,正确的定义是: A: const int MAX=100; B: final int MAX=100; C: final MAX=100; D: final Boolean FLAG=1;

    • 1

      C语言中符号常量定义的关键字是( ) A: int B: const C: include D: define

    • 2

      有定义语句struct man{ char name[10]; int age; float x;} w;则sizeof(int)的值为 ,sizeof(struct man)的值为 ,sizeof(w)的值为

    • 3

      定义符号常量NUM的值为100,语句应写成:#define NUM 100;。

    • 4

      下列表达式,哪一是声明P为指向常量的指针() A: const int *p B: int* const p; C: const int *const p D: int *p