In C language, there are several methods of communicating data between functions, one of which is by(51)。A.argumentsB.variablesC.messagesD.constants

题目

In C language, there are several methods of communicating data between functions, one of which is by(51)。

A.arguments

B.variables

C.messages

D.constants


相似考题
更多“In C language, there are several methods of communicating data between functions, one of w ”相关问题
  • 第1题:

    Program ( ) graphically present the detailed sequence of steps needed to solve a programming problem .

    A. modules B. flowcharts C. structures D. functions


    正确答案:B

  • 第2题:

    Program ( ) graphically present the detailed sequence of steps needed to solve a programming problem.

    A.modules
    B.flowcharts
    C.structures
    D.functions

    答案:B
    解析:
    程序流程图以图形方式展示了解决程序设计问题所需的一系列步骤。

  • 第3题:

    根据慕课的学习,学术研究论文结构中的IMRD指的是什么?

    A.introduction, message, research and discussion

    B.introduction, message, results and discussion

    C.introduction, methods, research and discussion

    D.introduction, methods, results and discussion


    学到知识?顿悟智慧?交到朋友?整合资源

  • 第4题:

    [A]applications [B]enterprises [C]functions [D]performances


    正确答案:C

    本题考查名词词义的辨析。空格处填入的名词充当extending them to结构中的介词宾语,其中extend...to...意为“扩展……用于……”,them指上文中的its commercial spaces(东日本铁路的商业空地)。因此,所填的名词应与前文一致,表达这些空地的用处或功能,应与use的名词形式usage属同一范畴。 A]、[C]项都有“使用”的意思,但application常与“科技成果、理论、法规”等搭配,强调它们的实际应用,一般不与spaces搭配,如 The new invention would have a wide range of applications in industry(这项新发明会在工业上获得广泛应用),[C]项functions“功能,作用”正确,即“还要把这些商业空地用于更加适应信息时代的功能上”。enterprise“企业,事业,计划”;performance“履行,执行,性能”。

  • 第5题:

    变量W_data定义如下:union data_node{float ff'int n;char ch;}W_data;则变量W_data所占的内存存储空间可表示为______。

    A.sizeof(int)
    B.sizeof(char)
    C.sizeof(float)
    D.sizeof(int)+sizeof(char)+sizeof(float)

    答案:C
    解析:
    本题考查C语言编程的基本知识。本题中变量W_data类型为联合。联合中所有数据项占有相同的内存空间。联合体所占的内存存储空间为所包含数据项所占的内存存储空间的最大值。

  • 第6题:

    对于以下代码描述有误的是? val data = Map(1 -> "One", 2 -> "Two") val res = for((k, v) <- data; if(k > 1)) yield v

    A.运行后res的结果为List("Two")

    B.运行后res的结果为List("One", "Two")

    C.对映射data中的每一个(键,值)对,k被绑定对键,而v则被绑定到值

    D.其中的if(k > 1)是一个守卫表达式


    B