In C language, the increment and decrement ______ can only be applied to variables, so an expression like x=(i+j)++is illegal.A.operationB.operateC.operatorD.operand

题目

In C language, the increment and decrement ______ can only be applied to variables, so an expression like x=(i+j)++is illegal.

A.operation

B.operate

C.operator

D.operand


相似考题
更多“In C language, the increment and decrement ______ can only be applied to variables, so an ”相关问题
  • 第1题:

    Phatic communication refers to( ).

    A.language’s function of the expression of identity
    B.social interaction of language
    C.language′s function of expressing it self
    D.sociological use of language

    答案:B
    解析:
    语言学基本概念。Phatic Communion(交际性谈话)指的是语言的社会交际功能。例如,我们径常说一些诸如God bless you!等礼节性的寒暄之语。

  • 第2题:

    【填空题】请写出以下程序的运行结果() int main() { void increment(); increment(); increment(); increment(); return 0; } void increment() { static int x=0; x++; printf("%dn",x); }


    a=56 b=59 c=41871

  • 第3题:

    59、以下程序的输出结果为:()。 void main() { void increment(void); increment(); increment(); increment(); } void increment(void) { int x=0; x++; printf(“%d ”,x); }


    B 241/100=2,2%9=2,所以a=2,b为两个非零的值的逻辑与,结果为1,。

  • 第4题:

    07510011:下面程序的结果是() #include <stdio.h> increment() { static int x=0; x+=1; printf(“%d”,x); } void main() { increment(); increment(); increment(); }

    A.1 1 1

    B.1 2 3

    C.0 1 2

    D.0 0 0


    01234

  • 第5题:

    电脑生产商Applied实施三级价格歧视,分别实体店和互联网店销售其产品,目前,Applied在实体店销售的边际收益为2000元,而在网店销售的边际收益为1500元,为了进一步提升利润,在当前产量下,Applied应该 ()

    A.增加在实体店的销量,减少网店的销量

    B.Applied已经达到利润最大化了

    C.减少在实体店的销量,增加网店的销量

    D.目前的信息不足以做出判断


    尾数定价

  • 第6题:

    【填空题】以下程序的运行结果是()。 main() { increment(); increment(); increment(); } increment() { int x=0; x+=1; printf("%d",x); }


    试题10分析 a=0,putchar(a+’A’)输出为A,a=5,putchar(a+’A’)输出为F,a=10,putchar(a+’A’)输出为K。 试题10答案 AFK