The Programming Counter(PC)is normally used to point outA.The address of next execution instructionB.The address of last execution instructionC.The address of current execution instructionD.Programmed execution instruction

题目

The Programming Counter(PC)is normally used to point out

A.The address of next execution instruction

B.The address of last execution instruction

C.The address of current execution instruction

D.Programmed execution instruction


相似考题
参考答案和解析
正确答案:A
更多“The Programming Counter(PC)is normally used to point outA.The address of next execution in ”相关问题
  • 第1题:

    以下4个程序中,完全正确的是

    A.#include <stdio.h> main(); {/*programming*/ printf("programming!\n");}

    B.#include <stdio.h> main(); {/*/ programming /*/ printf("programming!\n");}

    C.#include <stdio.h> main() {/*/*programming*/*/ printf("programming!\n");}

    D.include <stdio.h> main() {/*programming*/ printf("programming!\n");}


    正确答案:B
    解析:选项A)main();的分号是错误的,不能有分号;选项C)的注释语句多了两个*号;选项D)include前面没有#。

  • 第2题:

    以下四个程序中,完全正确的是()

    A.#include <stdio.h> main(); {/*/ programming /*/ printf("programming!n");}

    B.#include <stdio.h> main() {/* programming */ printf("programming!n"); }

    C.#include <stdio.h> main() {/*/* programming */*/ printf("programming!n"); }

    D.include <stdio.h> main() {/* programming */ printf("programming!n"); }


    B 在选项A中,main()函数后面的分号是错误的,C语言在函数名后而不能有分号。在C语言中注释内容必须放在”/’和”+/”之间,”/”和”*/”必须成对出现,按语法规定在注释之间不可以再嵌套”/∥’和”+/”。在选项C的程序段中注释语句之间有嵌套;所以选项C不正确。C语言用#inc1ude命令行来实现文件包含的功能。#inc1ude命令行的形式为:#inc1ude”文件名”,所以存选项D中inc1ude前面少了一个#符号,因而选项D不正确。

  • 第3题:

    6、以下四个程序中,完全正确的是()。

    A.#include <stdio.h> int main(); { /*programming*/ printf("programming!\n"); return 0; }

    B.#include <stdio.h> int main() { /*programming*/ printf("programming!\n"); return 0; }

    C.include <stdio.h> void main() { /*programming*/ printf("programming!\n"); return 0; }

    D.#include <stdio.h> int mian() { /*programming*/ printf("programming!\n"); return 0; }


    D

  • 第4题:

    以下4个程序中,完全正确的是A.include main(); {/*programming*/ printf("programming

    以下4个程序中,完全正确的是

    A.#include<stdio.h> main(); {/*programming*/ printf("programming!\n");}

    B.#include<stdio.h> main() {/*/programming/*/ printf("programming!\n");}

    C.#include<stdio.h> main() {/*/*programming*/*/ printf("programming!\n")}

    D.include<stdio.h> main() {/*programming*/ printf("programming!\n");}


    正确答案:B
    解析: 选项A)main();的分号是错误的,不能有分号;选项C)的注释语句多了两个*号;选项D)include前面没有#。

  • 第5题:

    以下四个程序中,完全正确的是

    A.#include int main() { /* programming */ printf("programming!n"); return 0; }

    B.#include int main() { /*/* programming */*/ printf("programming!n"); return 0; }

    C.include int main() { /* programming */ printf("programming!n"); return 0; }

    D.#include int main(); { /*/ programming /*/ printf("programming!n"); return 0; }


    B 在选项A中,main()函数后面的分号是错误的,C语言在函数名后而不能有分号。在C语言中注释内容必须放在”/’和”+/”之间,”/”和”*/”必须成对出现,按语法规定在注释之间不可以再嵌套”/∥’和”+/”。在选项C的程序段中注释语句之间有嵌套;所以选项C不正确。C语言用#inc1ude命令行来实现文件包含的功能。#inc1ude命令行的形式为:#inc1ude”文件名”,所以存选项D中inc1ude前面少了一个#符号,因而选项D不正确。

  • 第6题:

    设单链表中结点的结构为(data, next)。已知指针q所指点是指针p所指结点的直接前驱,若在q与p之间插入结点s,则应执行下列()操作。

    A.s->next=p->next; p->next=s

    B.q->next=s; s->next=p

    C.p->next=s->next; s->next=p

    D.p->next=s; s->next=q


    s = rear->next->next; rear->next->next = s->next; free(s);