美文网首页
C primer plus 第六版 第6版 002章 第二章 复

C primer plus 第六版 第6版 002章 第二章 复

作者: iOS开发章鱼哥 | 来源:发表于2017-03-21 21:03 被阅读199次

    1.C语言的基本模块是什么?
    函数

    2.什么是语法错误?写出一个英语例子和C语言例子
    语法错误违反了组成语句或程序的规则。
    Me Speak English Good!
    print"Where are the parenthese?"

    3.什么是语义错误?写出一个英语例子和C语言例子
    语意错误是指含义错误。
    这是一个有语意错误的英文例子:This is entence isexcellent Czech。
    C语言例子: thrice_n = 3 + n;

    4.略

    5.略

    6.在main int function char = 中,哪些是C语言的关键字?
    main是函数名
    function是函数的意思
    =是赋值运算符
    int 和 char 是关键字

    7.如何以下面格式输出变量words和lines的值(这里,3020和350代表两个变量的值)?
    There were 3020 words and 350 lines。
    printf("There were %d words and %d lines",words,lines);

    8.略

    9.略

    相关文章

      网友评论

          本文标题:C primer plus 第六版 第6版 002章 第二章 复

          本文链接:https://www.haomeiwen.com/subject/matnnttx.html